feat/support_fiber #6

Merged
tqcq merged 52 commits from feat/support_fiber into master 2024-08-11 13:03:04 +08:00
Showing only changes of commit 87c93ca7d8 - Show all commits

View File

@ -1,12 +1,17 @@
when: when:
- event: push - event: push
matrix:
BUILD_TYPE:
- Debug
- Release
steps: steps:
- name: linux-x64-gcc - name: linux-x64-gcc
image: art.uocat.com/docker/tqcq/cross:v1.0.0 image: art.uocat.com/docker/tqcq/cross:v1.0.0
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON .. - cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON ..
- cmake --build build -j $(nproc) - cmake --build build -j $(nproc)
- cd build - cd build
- ctest --output-on-failure -j $(nproc) - ctest --output-on-failure -j $(nproc)