Skip to content

Commit

Permalink
Fixed build and tried to speedup
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold committed Apr 24, 2024
1 parent e47dbbb commit 2d22b38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
tar zxf capnproto-c++-1.0.2.tar.gz
cd capnproto-c++-1.0.2
./configure
make -j check
make -j$(($(nproc)*2))
sudo make install
- name: Checkout
Expand All @@ -71,7 +71,7 @@ jobs:
submodules: 'false'
fetch-depth: 0

- name: Update Submodules (selected ones)
- name: Update / download Submodules (selected ones)
run: |
cd $GITHUB_WORKSPACE
git submodule init
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
shell: bash

- name: Build Release
run: make -j
run: cmake --build . --parallel -- -k 0
working-directory: ${{ runner.workspace }}/_build

- name: Run Tests
Expand Down

0 comments on commit 2d22b38

Please sign in to comment.