Skip to content

Commit

Permalink
fix: disable parallel build on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
tolstenko committed Jul 14, 2023
1 parent efbd2cf commit 1383cb3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,14 @@ jobs:
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DENABLE_TEST_COVERAGE=OFF

- name: build
if: startsWith(matrix.os,'ubuntu') == false
run: cmake --build build --parallel --config MinSizeRel

# On ubuntu, github actions doesn't support parallel build yet. should be fixed in the future.
- name: build
if: startsWith(matrix.os,'ubuntu') == true
run: cmake --build build --config MinSizeRel

- name: zip
uses: thedoctor0/zip-release@main
with:
Expand Down

0 comments on commit 1383cb3

Please sign in to comment.