Skip to content

Commit

Permalink
ci: Use fewer CPUs on Windows
Browse files Browse the repository at this point in the history
Windows CI is failing with out of memory sporadically.  Maybe using
fewer CPUs will help?
  • Loading branch information
eyal0 committed Apr 19, 2022
1 parent 3b9fe37 commit dfbef07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Windows specific setup
if: matrix.os == 'windows'
run: |
echo "export NUM_CPUS='$((`nproc --all` * 4))'" >> ~/.bash_profile
echo "export NUM_CPUS='$((`nproc --all`))'" >> ~/.bash_profile
- name: Ubuntu specific setup
if: matrix.os == 'ubuntu'
run: |
Expand Down

0 comments on commit dfbef07

Please sign in to comment.