Skip to content

Commit

Permalink
Increase number of parallel jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBehrens committed Oct 26, 2024
1 parent 7900314 commit 232002b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
tools/dev/v8gen.py -vv x64.release -- is_component_build=true use_custom_libcxx=false treat_warnings_as_errors=false
# Build
ninja -C out.gn/x64.release/
ninja -j4 -C out.gn/x64.release/
# Install to /opt/v8/self-built
sudo mkdir -p /opt/v8/self-built/{lib,include}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
run: |
phpize
./configure --with-v8js=/opt/v8/self-built LDFLAGS="-lstdc++" CPPFLAGS="-DV8_COMPRESS_POINTERS -DV8_ENABLE_SANDBOX"
make
make -j4
make test
- name: Archive test results
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
run: |
phpize
./configure
make
make -j4
make test
shell: alpine.sh {0}

Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
run: |
phpize
./configure --with-v8js=/opt/homebrew CPPFLAGS="-DV8_COMPRESS_POINTERS -DV8_ENABLE_SANDBOX"
make
make -j4
make test
- name: Archive test results
Expand Down

0 comments on commit 232002b

Please sign in to comment.