2024-06-11 19:13:30 +08:00
|
|
|
name: linux-x86-gcc
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- ".gitea/workflows/linux-x86-gcc.yml"
|
|
|
|
- "toolchains/host.gcc-m32.toolchain.cmake"
|
|
|
|
- "cmake/**"
|
|
|
|
- "third_party/**"
|
|
|
|
- "tile/**"
|
|
|
|
- "!tile/fiber/detail/asm/*"
|
|
|
|
- "tile/fiber/detail/asm/ucontext_x86.*"
|
|
|
|
- "CMakeLists.txt"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".gitea/workflows/linux-x86-gcc.yml"
|
|
|
|
- "toolchains/host.gcc-m32.toolchain.cmake"
|
|
|
|
- "cmake/**"
|
|
|
|
- "third_party/**"
|
|
|
|
- "tile/**"
|
|
|
|
- "!tile/fiber/detail/asm/*"
|
|
|
|
- "tile/fiber/detail/asm/ucontext_x86.*"
|
|
|
|
- "CMakeLists.txt"
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: linux-x86-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
|
2024-08-23 21:33:20 +08:00
|
|
|
sudo apt-get install -y cmake make gcc-multilib g++-multilib
|
2024-06-11 19:13:30 +08:00
|
|
|
- name: configure
|
|
|
|
run: |
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/host.gcc-m32.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON ..
|
|
|
|
- name: build
|
|
|
|
run: |
|
2024-06-17 14:29:49 +08:00
|
|
|
cmake --build build -j $(nproc)
|
2024-06-11 19:13:30 +08:00
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
cd build
|
2024-06-17 14:52:25 +08:00
|
|
|
ctest --output-on-failure -j $(nproc)
|
2024-06-17 14:29:49 +08:00
|
|
|
- name: benchmark
|
|
|
|
run: |
|
2024-06-20 23:35:40 +08:00
|
|
|
./build/bin/tile_bm_all
|