Skip to content

Commit

Permalink
Auto merge of #2747 - Amanieu:disable_semver, r=Amanieu
Browse files Browse the repository at this point in the history
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 rust-lang/rust#95688. They are missing a `si_addr()` function on `struct siginfo`.
  • Loading branch information
bors committed Apr 10, 2022
2 parents 53f78cd + 23a301d commit c971d65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/bors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -324,7 +327,7 @@ jobs:
needs: [
docker_linux_tier1,
docker_linux_tier2,
docker_linux_build_std,
#docker_linux_build_std,
macos,
windows,
style_check,
Expand All @@ -346,7 +349,7 @@ jobs:
needs: [
docker_linux_tier1,
docker_linux_tier2,
docker_linux_build_std,
#docker_linux_build_std,
macos,
windows,
style_check,
Expand Down
3 changes: 0 additions & 3 deletions ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down

0 comments on commit c971d65

Please sign in to comment.