diff --git a/.github/workflows/bors.yml b/.github/workflows/bors.yml index 6e4f7afeb2d92..abcc01765e9e7 100644 --- a/.github/workflows/bors.yml +++ b/.github/workflows/bors.yml @@ -116,9 +116,8 @@ jobs: i686-unknown-linux-musl, mips-unknown-linux-gnu, mips-unknown-linux-musl, - # FIXME: Disabled because of the `relocation truncated to fit` error - # mips64-unknown-linux-gnuabi64, - # mips64el-unknown-linux-gnuabi64, + mips64-unknown-linux-gnuabi64, + mips64el-unknown-linux-gnuabi64, mipsel-unknown-linux-musl, powerpc-unknown-linux-gnu, powerpc64-unknown-linux-gnu, diff --git a/ci/run.sh b/ci/run.sh index cbf644e4481a1..6fb059d2eae58 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -121,10 +121,6 @@ else cargo test $opt --manifest-path libc-test/Cargo.toml --target "${TARGET}" - # FIXME: Somehow it now emits errors like: - # `relocation truncated to fit: R_MIPS_GOT_DISP against `fchmod@@GLIBC_2.0'` - if [ "$TARGET" != "mips64el-unknown-linux-gnuabi64" ] && [ "$TARGET" != "mips64-unknown-linux-gnuabi64" ]; then cargo test $opt --features extra_traits --manifest-path libc-test/Cargo.toml \ --target "${TARGET}" - fi fi