Skip to content

Commit

Permalink
Test i686-unknown-linux-gnu on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 9, 2020
1 parent 530ebb7 commit af6c551
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,30 @@ jobs:
- name: Test
run: ./ci/${{ matrix.crates }}.sh

# Test crates on non x86_64 architectures.
cross:
strategy:
matrix:
crates:
- crossbeam
- crossbeam-channel
- crossbeam-deque
- crossbeam-epoch
- crossbeam-queue
- crossbeam-skiplist
- crossbeam-utils
target:
- i686-unknown-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
run: rustup update stable && rustup default stable
- name: Install cross
run: cargo install cross
- name: Test
run: cross test --package ${{ matrix.crates }} --target ${{ matrix.target }}

# Check all feature combinations works properly.
features:
name: features
Expand Down Expand Up @@ -116,6 +140,7 @@ jobs:
if: github.event_name == 'push' && success()
needs:
- test
- cross
- features
- dependencies
- rustfmt
Expand All @@ -129,6 +154,7 @@ jobs:
if: github.event_name == 'push' && !success()
needs:
- test
- cross
- features
- dependencies
- rustfmt
Expand Down

0 comments on commit af6c551

Please sign in to comment.