Skip to content

Commit

Permalink
Avoid overriding GNUMAKEFLAGS's -j
Browse files Browse the repository at this point in the history
.github/actions/setup/directories/action.yml sets GNUMAKEFLAGS. Having
-j here is rather harmful.

Partly reverts f8dad61.
  • Loading branch information
k0kubun committed Apr 27, 2024
1 parent f64c974 commit c32366f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/yjit-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:

- name: make ${{ matrix.test_task }}
run: >-
make -s -j ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
RUN_OPTS="$RUN_OPTS" MSPECOPT=--debug
YJIT_BENCH_OPTS="$YJIT_BENCH_OPTS" YJIT_BINDGEN_DIFF_OPTS="$YJIT_BINDGEN_DIFF_OPTS"
timeout-minutes: 90
Expand Down

0 comments on commit c32366f

Please sign in to comment.