summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-04-10 13:11:36 +0000
committerbors <bors@rust-lang.org>2022-04-10 13:11:36 +0000
commitc971d659ff0b21ed4a1334768694f6e893f8a2cb (patch)
tree9158ab833e5983cdb93fea50b5e0fd2e3f192d6a
parent53f78cdcd4dd306d5d51044ace8031b3f3e00756 (diff)
parent23a301d64b37162c953f806748abd120f6ef34ab (diff)
downloadrust-libc-c971d659ff0b21ed4a1334768694f6e893f8a2cb.tar.gz
Auto merge of #2747 - Amanieu:disable_semver, r=Amanieu
Disable broken CI jobs These are temporarily removed until someone comes to fix them. The semver jobs have been broken for over a year now, but are ignored by bors. Now we just disable them completely since they cause confusion when reading the build logs. The uclibc targets were recently broken by https://github.com/rust-lang/rust/pull/95688. They are missing a `si_addr()` function on `struct siginfo`.
-rw-r--r--.github/workflows/bors.yml7
-rw-r--r--ci/build.sh3
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/bors.yml b/.github/workflows/bors.yml
index c5e0754574..65aa42540b 100644
--- a/.github/workflows/bors.yml
+++ b/.github/workflows/bors.yml
@@ -154,6 +154,7 @@ jobs:
# These targets are tier 3 or otherwise need to have CI build std via -Zbuild-std.
# Because of this, only the nightly compiler can be used on these targets.
docker_linux_build_std:
+ if: ${{ false }} # This is currently broken
name: Docker Linux Build-Std Targets
needs: [docker_linux_tier1, style_check]
runs-on: ubuntu-20.04
@@ -274,6 +275,7 @@ jobs:
shell: bash
semver_linux:
+ if: ${{ false }} # This is currently broken
name: Semver Linux
runs-on: ubuntu-20.04
continue-on-error: true
@@ -286,6 +288,7 @@ jobs:
run: sh ci/semver.sh linux
semver_macos:
+ if: ${{ false }} # This is currently broken
name: Semver macOS
runs-on: macos-11
continue-on-error: true
@@ -324,7 +327,7 @@ jobs:
needs: [
docker_linux_tier1,
docker_linux_tier2,
- docker_linux_build_std,
+ #docker_linux_build_std,
macos,
windows,
style_check,
@@ -346,7 +349,7 @@ jobs:
needs: [
docker_linux_tier1,
docker_linux_tier2,
- docker_linux_build_std,
+ #docker_linux_build_std,
macos,
windows,
style_check,
diff --git a/ci/build.sh b/ci/build.sh
index d695f6b259..dba868fdd5 100644
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -226,7 +226,6 @@ aarch64-unknown-openbsd \
aarch64-wrs-vxworks \
armebv7r-none-eabi \
armebv7r-none-eabihf \
-armv7-unknown-linux-uclibceabihf \
armv7-wrs-vxworks-eabihf \
armv7r-none-eabi \
armv7r-none-eabihf \
@@ -237,9 +236,7 @@ i686-unknown-haiku \
i686-unknown-netbsd \
i686-unknown-openbsd \
i686-wrs-vxworks \
-mips-unknown-linux-uclibc \
mipsel-sony-psp \
-mipsel-unknown-linux-uclibc \
mips64-unknown-linux-muslabi64 \
mips64el-unknown-linux-muslabi64 \
nvptx64-nvidia-cuda \