sled/.gitea/workflows/linux-x64-gcc.yml
tqcq 78eedb6a65
Some checks failed
linux-mips64-gcc / linux-gcc-mips64el (push) Failing after 1m55s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 1m5s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 1m40s
fix pause_timer
2024-03-31 15:22:51 +08:00

54 lines
1.2 KiB
YAML

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
cmake .. -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DSLED_BUILD_BENCHMARK=ON -DSLED_BUILD_TESTS=ON
- name: build
run: |
cmake --build build -j `nproc`
- name: test
run: |
cd build
ctest --output-on-failure -j`nproc`
- name: benchmark
run: |
./build/sled_benchmark