dc2bb3567b
Some checks failed
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Waiting to run
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Waiting to run
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Waiting to run
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Waiting to run
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 24s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 23s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 41s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 25s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 2m9s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 2m22s
linux-x64-clang / linux-clang (Debug) (push) Failing after 19s
linux-x64-clang / linux-clang (Release) (push) Failing after 17s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 1m55s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 2m19s
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: linux-x64-gcc
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".gitea/workflows/linux-x64-gcc.yml"
|
|
- "cmake/**"
|
|
- "third_party/**"
|
|
- "tile/**"
|
|
- "!tile/fiber/detail/asm/*"
|
|
- "tile/fiber/detail/asm/ucontext_x64.*"
|
|
- "CMakeLists.txt"
|
|
pull_request:
|
|
paths:
|
|
- ".gitea/workflows/linux-x64-gcc.yml"
|
|
- "cmake/**"
|
|
- "third_party/**"
|
|
- "tile/**"
|
|
- "!tile/fiber/detail/asm/*"
|
|
- "tile/fiber/detail/asm/ucontext_x64.*"
|
|
- "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: recursive
|
|
- 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}} -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 -j $(nproc)
|
|
- name: benchmark
|
|
run: |
|
|
./build/bin/tile_bm_all
|