Skip to content

Commit

Permalink
Merge pull request #30 from OwnZones/per/update_workflows
Browse files Browse the repository at this point in the history
Update unit test workflow to use github runner
  • Loading branch information
permobergedge authored Dec 20, 2024
2 parents 22ebdd7 + e927af3 commit e86ed48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
run: cmake -DCMAKE_BUILD_TYPE=Release .
- name: make
run: make
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: libsrtnet_linux
path: ./libsrtnet.a
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: libsrt_linux
path: ./srt/libsrt.a
8 changes: 4 additions & 4 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:
jobs:
test-release:

runs-on: stardom-nuc
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- name: CMake set-up for release
run: |
rm -rf build
sudo apt update && sudo apt install -y libgtest-dev
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
Expand All @@ -30,13 +30,13 @@ jobs:
test-debug:

runs-on: stardom-nuc
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- name: CMake set-up for debug
run: |
rm -rf build
sudo apt update && sudo apt install -y libgtest-dev
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
Expand Down

0 comments on commit e86ed48

Please sign in to comment.