Skip to content

Commit

Permalink
Add stable-i686 to CI for 32-bit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Sep 15, 2020
1 parent e768237 commit 141dbc9
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,38 @@ jobs:
command: test
args: --verbose --package rayon-demo

i686:
name: Test (ubuntu-latest, stable-i686)
runs-on: ubuntu-latest
steps:
- name: System install
run: |
sudo apt-get update
sudo apt-get install gcc-multilib
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: stable-i686-unknown-linux-gnu
profile: minimal
override: true
- name: Checkout
uses: actions/checkout@v2
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- name: Test rayon
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --package rayon
- name: Test rayon-core
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --package rayon-core

# wasm won't actually work without threading, but it builds
wasm:
name: WebAssembly
Expand Down
1 change: 1 addition & 0 deletions bors.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
status = [
"Check (1.31.0)",
"Test (ubuntu-latest, stable)",
"Test (ubuntu-latest, stable-i686)",
"Test (ubuntu-latest, beta)",
"Test (ubuntu-latest, nightly)",
"Test (windows-latest, stable)",
Expand Down

0 comments on commit 141dbc9

Please sign in to comment.