Skip to content

Commit

Permalink
ci: always parallel build
Browse files Browse the repository at this point in the history
For CI purposes, parallel build provides a significant speedup and helps
check for dependency ordering bugs.

Signed-off-by: Robin H. Johnson <[email protected]>
  • Loading branch information
robbat2 committed Jan 2, 2025
1 parent 8f02252 commit 868ffc6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bsd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
pkg install -y autoconf automake bison flex pkgconf
./autogen.sh
./configure
make
make dist-xz
make install
make -j
make -j dist-xz
make -j install
2 changes: 1 addition & 1 deletion .github/workflows/buildroot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
run: rm -rf radvd*
- name: Build
working-directory: /home/runner/${{ env.BUILDROOT_DIRECTORY_NAME }}
run: make
run: make -j
6 changes: 3 additions & 3 deletions test/test_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ esac
./autogen.sh
./configure --with-check
make -j
make check
make dist-xz
sudo make install
make -j check
make -j dist-xz
sudo make -j install

0 comments on commit 868ffc6

Please sign in to comment.