41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: linux-x64-gcc
|
|
on:
|
|
- push
|
|
- pull_request
|
|
concurrency:
|
|
group: linux-x64-gcc-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
permissions:
|
|
- read
|
|
|
|
jobs:
|
|
linux-gcc:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: update
|
|
run: sudo apt-get update
|
|
|
|
- name: configure
|
|
run: |
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release -DULIB_BUILD_TESTS=ON
|
|
- name: build
|
|
run: |
|
|
cmake --build build -j `nproc`
|
|
- name: test
|
|
run: |
|
|
cd build && ctest --output-on-failure -j `nproc`
|
|
|
|
- name: configure-shared
|
|
run: |
|
|
mkdir build-shared && cd build-shared
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release -DULIB_BUILD_TESTS=ON -DULIB_SHARED_LIB=ON
|
|
- name: build-shared
|
|
run: |
|
|
cmake --build build-shared -j `nproc`
|
|
- name: test-shared
|
|
run: |
|
|
cd build-shared && ctest --output-on-failure -j `nproc` |