Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
murillo128 committed Sep 11, 2023
1 parent 19fc727 commit b1bdbae
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,18 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: 'recursive'
- name: Initialize submodules
run: git submodule update --init --recursive
- uses: actions/checkout@v1
- name: Configure
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
- name: Get number of CPU cores
uses: SimenB/[email protected]
id: cpu-cores
- name: make
run: cd build && make
run: cd build && make -j${{ steps.cpu-cores.outputs.count }}
- name: Run Test
run: cd build && ./MediaServerUnitTest

0 comments on commit b1bdbae

Please sign in to comment.