Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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