From d2ece1a95af02dbd0e5971bd7a9c07ea32687f80 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 11 May 2024 17:25:35 -0700 Subject: [PATCH] more --- .github/actions/binary-compatible-builds/main.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/binary-compatible-builds/main.js b/.github/actions/binary-compatible-builds/main.js index 6230126fcb81..f950356df333 100755 --- a/.github/actions/binary-compatible-builds/main.js +++ b/.github/actions/binary-compatible-builds/main.js @@ -21,6 +21,11 @@ if (process.platform == 'win32') { return; } +// Skip containers with android +if (process.env.INPUT_NAME.indexOf("android") >= 0) { + return; +} + // ... and on Linux we do fancy things with containers. We'll spawn an old // CentOS container in the background with a super old glibc, and then we'll run // commands in there with the `$CENTOS` env var.