From 2b325a1878ad5da36c06469046ecf61fddde6c0c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 4 Jan 2021 14:50:42 -0600 Subject: [PATCH] Try to fix CI (#2544) This is an attempt to work around rust-lang/rust#80703 to get CI green again. --- .github/actions/binary-compatible-builds/main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/binary-compatible-builds/main.js b/.github/actions/binary-compatible-builds/main.js index d2d774f4eb..a70cd76e83 100755 --- a/.github/actions/binary-compatible-builds/main.js +++ b/.github/actions/binary-compatible-builds/main.js @@ -51,6 +51,8 @@ child_process.execFileSync('docker', [ '-v', `${process.cwd()}:${process.cwd()}`, '-v', `${child_process.execSync('rustc --print sysroot').toString().trim()}:/rust:ro`, '--env', `PATH=${path}`, + // FIXME(rust-lang/rust#80703) this shouldn't be necessary + '--env', `LD_LIBRARY_PATH=/rust/lib`, 'centos:7', ], stdio);