You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
name: Linux_x86_64_test |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
pull_request: |
|
types: [ opened, synchronize ] |
|
|
|
workflow_dispatch: |
|
|
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
|
|
- name: Install dependencies |
|
run: | |
|
sudo apt-get update -y |
|
sudo apt-get install -y cmake curl g++ git lcov libgtest-dev libgmock-dev libfmt-dev libsdl2-dev libsodium-dev libpng-dev libbz2-dev |
|
- name: Cache CMake build folder |
|
uses: actions/cache@v3 |
|
with: |
|
path: build |
|
key: linux-x86-64-test-cmake-v2-${{ github.sha }} |
|
restore-keys: linux-x86-64-test-cmake-v2- |
|
- name: Build tests |
|
run: | |
|
cmake -S. -Bbuild -DENABLE_CODECOVERAGE=ON |
|
cmake --build build -j $(nproc) |
|
- name: Run tests |
|
run: cd build && ctest --output-on-failure |
|
- name: Upload results |
|
uses: codecov/codecov-action@v3 |
|
with: |
|
gcov: true
|
|
|