Reactivate i686 CI test

This commit is contained in:
Constance 2023-11-23 21:12:08 +01:00
parent 87464d4b3f
commit d76d2317b7
1 changed files with 30 additions and 30 deletions

View File

@ -33,36 +33,36 @@ jobs:
${{ steps.prepare.outputs.feature-flags }} ${{ steps.prepare.outputs.feature-flags }}
${{ matrix.extra_flags }} ${{ matrix.extra_flags }}
# test-32-bit: test-32-bit:
# name: Test on i686-unknown-linux-gnu${{ matrix.name_suffix }} name: Test on i686-unknown-linux-gnu${{ matrix.name_suffix }}
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# strategy: strategy:
# matrix: matrix:
# stage: [stable, beta, nightly] stage: [stable, beta, nightly]
# include: include:
# - stage: beta - stage: beta
# name_suffix: " with beta features" name_suffix: " with beta features"
# - stage: nightly - stage: nightly
# name_suffix: " with nightly features" name_suffix: " with nightly features"
#
# steps: steps:
# - uses: actions/checkout@v3 - uses: actions/checkout@v3
# - id: prepare - id: prepare
# uses: ./.github/actions/prepare uses: ./.github/actions/prepare
# with: with:
# beta-features: ${{ matrix.stage == 'beta' }} beta-features: ${{ matrix.stage == 'beta' }}
# nightly-features: ${{ matrix.stage == 'nightly' }} nightly-features: ${{ matrix.stage == 'nightly' }}
# - name: Install cross-platform support dependencies - name: Install cross-platform support dependencies
# run: sudo apt install gcc-multilib run: sudo apt install gcc-multilib
# - run: rustup target add i686-unknown-linux-gnu - run: rustup target add i686-unknown-linux-gnu
# - name: Run tests - name: Run tests
# run: > run: >
# cargo test cargo test
# --verbose --verbose
# --release --release
# --workspace --workspace
# --target i686-unknown-linux-gnu --target i686-unknown-linux-gnu
# ${{ steps.prepare.outputs.feature-flags }} ${{ steps.prepare.outputs.feature-flags }}
build: build:
name: Build target ${{ matrix.target }} name: Build target ${{ matrix.target }}