From d76d2317b75e79480eb3c7df4f28428e92643d24 Mon Sep 17 00:00:00 2001 From: Constance Date: Thu, 23 Nov 2023 21:12:08 +0100 Subject: [PATCH] Reactivate i686 CI test --- .github/workflows/ci.yml | 60 ++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db9abdc6..7cb0e84e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,36 +33,36 @@ jobs: ${{ steps.prepare.outputs.feature-flags }} ${{ matrix.extra_flags }} -# test-32-bit: -# name: Test on i686-unknown-linux-gnu${{ matrix.name_suffix }} -# runs-on: ubuntu-latest -# strategy: -# matrix: -# stage: [stable, beta, nightly] -# include: -# - stage: beta -# name_suffix: " with beta features" -# - stage: nightly -# name_suffix: " with nightly features" -# -# steps: -# - uses: actions/checkout@v3 -# - id: prepare -# uses: ./.github/actions/prepare -# with: -# beta-features: ${{ matrix.stage == 'beta' }} -# nightly-features: ${{ matrix.stage == 'nightly' }} -# - name: Install cross-platform support dependencies -# run: sudo apt install gcc-multilib -# - run: rustup target add i686-unknown-linux-gnu -# - name: Run tests -# run: > -# cargo test -# --verbose -# --release -# --workspace -# --target i686-unknown-linux-gnu -# ${{ steps.prepare.outputs.feature-flags }} + test-32-bit: + name: Test on i686-unknown-linux-gnu${{ matrix.name_suffix }} + runs-on: ubuntu-latest + strategy: + matrix: + stage: [stable, beta, nightly] + include: + - stage: beta + name_suffix: " with beta features" + - stage: nightly + name_suffix: " with nightly features" + + steps: + - uses: actions/checkout@v3 + - id: prepare + uses: ./.github/actions/prepare + with: + beta-features: ${{ matrix.stage == 'beta' }} + nightly-features: ${{ matrix.stage == 'nightly' }} + - name: Install cross-platform support dependencies + run: sudo apt install gcc-multilib + - run: rustup target add i686-unknown-linux-gnu + - name: Run tests + run: > + cargo test + --verbose + --release + --workspace + --target i686-unknown-linux-gnu + ${{ steps.prepare.outputs.feature-flags }} build: name: Build target ${{ matrix.target }}