Skip to content

Commit

Permalink
Revert ".github/worflows: cover i686 build"
Browse files Browse the repository at this point in the history
This reverts commit 0fad98c.
  • Loading branch information
ming1 committed Nov 13, 2024
1 parent 0fad98c commit 9b2a487
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,10 @@ jobs:
matrix:
toolchain:
- stable
- beta
- nightly
target:
- x86_64-unknown-linux-gnu
- i686-unknown-linux-gnu
steps:
- uses: actions/checkout@v3
- name: Install dependencies
if: matrix.target == 'i686-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y gcc-multilib
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} && rustup target add ${{ matrix.target }}
- run: cargo build --verbose --target ${{ matrix.target }}
- run: cargo build --features=fat_complete --verbose --target ${{ matrix.target }}
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo build --features=fat_complete --verbose

0 comments on commit 9b2a487

Please sign in to comment.