Skip to content

Commit

Permalink
Speed up CI
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-attack committed Feb 16, 2025
1 parent 0d81430 commit b461895
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,23 @@ jobs:
- name: cmake configure
run: cmake .
- name: cmake build
run: cmake --build .

run: cmake --build . -j4
mac-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: cmake configure
run: cmake .
- name: cmake build
run: cmake --build . -j4
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake configure
run: cmake .
- name: cmake build
run: cmake --build .
run: cmake --build . -j4
- name: network
run: sudo apt install net-tools && ifconfig
- name: Run Tests
Expand Down

0 comments on commit b461895

Please sign in to comment.