feat update split configure,build
All checks were successful
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Successful in 3m4s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Successful in 1m41s
linux-arm-gcc / linux-gcc-arm (Release) (push) Successful in 1m33s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Successful in 1m47s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Successful in 1m39s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Successful in 1m21s

This commit is contained in:
tqcq 2024-06-17 15:33:07 +08:00
parent d3d60da45a
commit 6e7d46c259
2 changed files with 12 additions and 3 deletions

View File

@ -42,10 +42,13 @@ jobs:
# run: |
# sudo apt-get update -y
# sudo apt-get install -y g++-aarch64-linux-gnu qemu-user-binfmt
- name: build
- name: configure
run: |
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/aarch64-linux-gnu.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
- name: build
run: |
cd build
cmake --build . -j $(nproc)
- name: test
run: |-

View File

@ -40,10 +40,13 @@ jobs:
# run: |
# sudo apt-get update -y
# sudo apt-get install -y g++-arm-linux-gnueabi qemu-user-binfmt
- name: build
- name: configure
run: |
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabi.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_TESTS=ON ..
- name: build
run: |
cd build
cmake --build . -j $(nproc)
- name: test
run: |
@ -65,10 +68,13 @@ jobs:
run: |
sudo apt-get update -y
sudo apt-get install -y cmake make g++-arm-linux-gnueabihf qemu-user-binfmt
- name: build
- name: configure
run: |
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabihf.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
- name: build
run: |
cd build
cmake --build . -j $(nproc)
- name: test
run: |-