Skip to content

Commit

Permalink
Merge pull request #564 from jnummelin/disable-parallel-make-jobs-in-…
Browse files Browse the repository at this point in the history
…release

Disable parallel jobs in release make targets
  • Loading branch information
jnummelin authored Dec 21, 2020
2 parents b1369d8 + bec258f commit 3cd289c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make -j$(nproc) EMBEDDED_BINS_BUILDMODE=docker
run: make EMBEDDED_BINS_BUILDMODE=docker
env:
VERSION: ${{ needs.release.outputs.tag_name }}
- name: Clean Docker
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make -j$(nproc) EMBEDDED_BINS_BUILDMODE=docker k0s.exe
run: make EMBEDDED_BINS_BUILDMODE=docker k0s.exe
env:
VERSION: ${{ needs.release.outputs.tag_name }}

Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make -j$(nproc) EMBEDDED_BINS_BUILDMODE=docker
run: make EMBEDDED_BINS_BUILDMODE=docker
env:
VERSION: ${{ needs.release.outputs.tag_name }}
- name: Clean Docker
Expand Down

0 comments on commit 3cd289c

Please sign in to comment.