sled/.gitea/workflows/linux-x64-gcc.yml

54 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2024-03-01 14:56:06 +08:00
name: linux-x64-gcc
on:
push:
paths:
- ".gitea/workflows/linux-x64-gcc.yml"
- "3party/**"
- "benchmark/**"
- "include/**"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
pull_request:
paths:
- ".gitea/workflows/linux-x64-gcc.yml"
- "3party/**"
- "benchmark/**"
- "include/**"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
concurrency:
group: linux-x64-gcc-${{ github.ref }}
cancel-in-progress: true
jobs:
linux-gcc:
runs-on: ubuntu-20.04
strategy:
matrix:
build_type: ["Debug", "Release"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: install-tools
run: |
sudo apt-get update -y
sudo apt-get install -y cmake make
- name: configure
run: |
mkdir build && cd build
2024-03-31 15:22:51 +08:00
cmake .. -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DSLED_BUILD_BENCHMARK=ON -DSLED_BUILD_TESTS=ON
2024-03-01 14:56:06 +08:00
- name: build
run: |
cmake --build build -j `nproc`
2024-03-31 02:15:00 +08:00
- name: test
run: |
cd build
ctest --output-on-failure -j`nproc`
- name: benchmark
run: |
./build/sled_benchmark