Skip to content

Commit

Permalink
.github: also test GOMAXPROCS=1
Browse files Browse the repository at this point in the history
We already had this on Travis CI ( ffb96ef )
but lost it on the migration to Github Actions.

Relates-to: #473
Change-Id: I1c987fe565227f707d50ea440929f9915a1e86e3
  • Loading branch information
rfjakob authored and hanwen committed Jun 12, 2023
1 parent 255ab74 commit 238293d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -16,6 +16,9 @@ jobs:
- "1.18.x" # Golang upstream stable
- "1.19.x" # Golang upstream stable
- "1.20.x" # Golang upstream stable
GOMAXPROCS:
- "" # Use all cpus (default).
- "1" # Single-cpu mode. Some failures are only visible like this.
# Don't cancel everything when one Go version fails
fail-fast: false
runs-on: ubuntu-latest
Expand All @@ -35,4 +38,4 @@ jobs:
- run: echo user_allow_other | sudo tee -a /etc/fuse.conf

# Actual test steps are in all.bash
- run: ./all.bash
- run: GOMAXPROCS="${{ matrix.GOMAXPROCS }}" ./all.bash

0 comments on commit 238293d

Please sign in to comment.