481015e1c6
Some checks failed
android / build (push) Failing after 9s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 48m20s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 52m49s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 25s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 24s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 38m9s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 33m29s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 9m34s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 12m14s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 10m1s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 12m29s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 10m6s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 11m7s
linux-x64-clang / linux-clang (Debug) (push) Failing after 30s
linux-x64-clang / linux-clang (Release) (push) Failing after 41s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 6m34s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 10m11s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 6m30s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 10m36s
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
name: linux-x64-clang
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".gitea/workflows/linux-x64-clang.yml"
|
|
- "cmake/**"
|
|
- "third_party/**"
|
|
- "tile/**"
|
|
- "CMakeLists.txt"
|
|
pull_request:
|
|
paths:
|
|
- ".gitea/workflows/linux-x64-clang.yml"
|
|
- "cmake/**"
|
|
- "third_party/**"
|
|
- "tile/**"
|
|
- "CMakeLists.txt"
|
|
|
|
concurrency:
|
|
group: linux-x64-clang-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
linux-clang:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
build_type: ["Debug", "Release"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- name: install-tools
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y cmake make clang-tools
|
|
- name: configure
|
|
env:
|
|
CC: clang
|
|
CXX: clang++
|
|
run: |
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON ..
|
|
- name: build
|
|
run: |
|
|
cmake --build build -j $(nproc)
|
|
- name: test
|
|
run: |
|
|
cd build
|
|
ctest --output-on-failure
|
|
# - name: benchmark
|
|
# run: |
|
|
# ./build/sled_benchmark
|