From 59daa5abce6712ca614687015c777907391871dd Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Fri, 21 Jun 2024 12:45:54 -0500 Subject: [PATCH] Run 32-bit CI tests as i586 (#10578) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5135d29c5..9707f6764 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@1.70 with: - targets: "i686-unknown-linux-gnu" # rust-toolchain wants this comma-separated + targets: "i586-unknown-linux-gnu" # rust-toolchain wants this comma-separated - name: Install deps run: | sudo apt update @@ -57,7 +57,7 @@ jobs: CFLAGS: "-m32" run: | mkdir build && cd build - cmake -DFISH_USE_SYSTEM_PCRE2=OFF -DRust_CARGO_TARGET=i686-unknown-linux-gnu .. + cmake -DFISH_USE_SYSTEM_PCRE2=OFF -DRust_CARGO_TARGET=i586-unknown-linux-gnu .. - name: make run: | make VERBOSE=1