diff --git a/.gitea/workflows/linux-aarch64-gcc.yml b/.gitea/workflows/linux-aarch64-gcc.yml index 7ebe318..3676172 100644 --- a/.gitea/workflows/linux-aarch64-gcc.yml +++ b/.gitea/workflows/linux-aarch64-gcc.yml @@ -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: |- diff --git a/.gitea/workflows/linux-arm-gcc.yml b/.gitea/workflows/linux-arm-gcc.yml index 608eedc..28ace26 100644 --- a/.gitea/workflows/linux-arm-gcc.yml +++ b/.gitea/workflows/linux-arm-gcc.yml @@ -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: |-