diff --git a/.github/workflows/bors.yml b/.github/workflows/bors.yml
index 6e4f7afeb2d92ff78bb63c1d56acbc9012c55f7d..abcc01765e9e7cc6777545129b0a0e28df4827a1 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 cbf644e4481a1003a5a2d25ede6c2d581c975694..6fb059d2eae58c09f4f57aeefcd27b3496b5e584 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