Skip to content

Commit

Permalink
Change from local to github runner in unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
permobergedge committed Dec 20, 2024
1 parent 22ebdd7 commit 4dbd6c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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
5 changes: 3 additions & 2 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +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: |
sudo apt update && sudo apt install -y googletest libgtest-dev
rm -rf build
mkdir build
cd build
Expand All @@ -30,7 +31,7 @@ jobs:
test-debug:

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

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 4dbd6c9

Please sign in to comment.