Skip to content

Commit

Permalink
.github/workflows/guile2.2: Add "-j" option for "make"
Browse files Browse the repository at this point in the history
* .github/workflows/guile2.2.yml: Add "-j" option for "make" invocations.
  • Loading branch information
artyom-poptsov committed Jan 26, 2024
1 parent 2cd149b commit bcd8338
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/guile2.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ jobs:
- name: Configure
run: ./configure
- name: Make
run: make
run: make -j$(nproc)
- name: Run tests
run: make check
run: make -j$(nproc) check
- name: Make distribution
run: make distcheck
run: make -j$(nproc) distcheck
- name: Upload the artifact
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: guile-ssh
compression-level: 0
path: "guile-ssh-*.tar.gz"

0 comments on commit bcd8338

Please sign in to comment.