Skip to content

Commit

Permalink
[test] Try -j4 as GitHub actions upgraded its CPUs.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed May 23, 2024
1 parent 1803839 commit a383426
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
with:
version: 13
- uses: actions/checkout@main
- run: make -j3 test-c test-cl test-error
- run: make -j4 test-c test-cl test-error
cpp-java:
runs-on: ubuntu-22.04
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
distribution: temurin
java-version: 21
- uses: actions/checkout@main
- run: make -j3 test-cpp test-java
- run: make -j4 test-cpp test-java
cs:
runs-on: ubuntu-22.04
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
version: 13
- uses: actions/setup-dotnet@main
- uses: actions/checkout@main
- run: make -j3 test-cs
- run: make -j4 test-cs
d:
runs-on: ubuntu-22.04
steps:
Expand All @@ -40,15 +40,15 @@ jobs:
with:
compiler: dmd-latest
- uses: actions/checkout@main
- run: make -j3 test-d
- run: make -j4 test-d
js-ts:
runs-on: ubuntu-22.04
steps:
- uses: Totto16/setup-gcc@master
with:
version: 13
- uses: actions/checkout@main
- run: make -j3 test-js test-ts
- run: make -j4 test-js test-ts
py-swift:
runs-on: ubuntu-22.04
steps:
Expand All @@ -58,7 +58,7 @@ jobs:
- run: pip install mypy
- uses: pfusik/setup-swift@gpg-www
- uses: actions/checkout@main
- run: make -j3 test-py test-swift
- run: make -j4 test-py test-swift
host-diff:
runs-on: ubuntu-22.04
steps:
Expand All @@ -71,9 +71,9 @@ jobs:
java-version: 21
- uses: actions/setup-node@main
- uses: actions/checkout@main
- run: make -j3 host-diff
- run: make -j3 java/GenBase.java
- run: make -j3 host-diff-java
- run: make -j3 test-error FUT_HOST=cs
- run: make -j3 test-error FUT_HOST=java
- run: make -j3 test-error FUT_HOST=node
- run: make -j4 host-diff
- run: make -j4 java/GenBase.java
- run: make -j4 host-diff-java
- run: make -j4 test-error FUT_HOST=cs
- run: make -j4 test-error FUT_HOST=java
- run: make -j4 test-error FUT_HOST=node

0 comments on commit a383426

Please sign in to comment.