tile/.gitea/workflows/linux-x64-gcc.yml
tqcq 80e184af07
Some checks failed
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Successful in 3m9s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Successful in 3m46s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Successful in 2m53s
linux-arm-gcc / linux-gcc-arm (Release) (push) Successful in 2m41s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Successful in 3m30s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Successful in 3m21s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Successful in 2m56s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Successful in 3m14s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1m30s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 3m32s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Successful in 4m52s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 2m10s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 2m35s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 30s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 32s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Has been cancelled
feat test use multi thread
2024-06-17 14:52:25 +08:00

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/tile_bm_all