feat update workflow
Some checks failed
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Waiting to run
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Waiting to run
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 1s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 1s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 1s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 1s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 1s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 1s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 1s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 1s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 1s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 1s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 1s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Has been cancelled
linux-arm-gcc / linux-gcc-arm (Release) (push) Has been cancelled
Some checks failed
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Waiting to run
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Waiting to run
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 1s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 1s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 1s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 1s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 1s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 1s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 1s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 1s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 1s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 1s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 1s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Has been cancelled
linux-arm-gcc / linux-gcc-arm (Release) (push) Has been cancelled
This commit is contained in:
parent
6971411b54
commit
29eecb4f00
@ -52,4 +52,4 @@ jobs:
|
||||
cd build
|
||||
sudo ln -sf /usr/aarch64-linux-gnu/lib/ld-linux-aarch64.so.1 /lib/ld-linux-aarch64.so.1
|
||||
export LD_LIBRARY_PATH=/usr/aarch64-linux-gnu/lib
|
||||
ctest --output-on-failure -j$(nproc) --timeout 180
|
||||
ctest --output-on-failure
|
||||
|
@ -50,7 +50,7 @@ jobs:
|
||||
cd build
|
||||
sudo ln -sf /usr/arm-linux-gnueabi/lib/ld-linux.so.3 /lib/ld-linux.so.3
|
||||
export LD_LIBRARY_PATH=/usr/arm-linux-gnueabi/lib
|
||||
ctest --output-on-failure -j$(nproc)
|
||||
ctest --output-on-failure
|
||||
|
||||
linux-gcc-armhf:
|
||||
runs-on: ubuntu-20.04
|
||||
@ -75,4 +75,4 @@ jobs:
|
||||
cd build
|
||||
sudo ln -sf /usr/arm-linux-gnueabihf/lib/ld-linux-armhf.so.3 /lib/ld-linux-armhf.so.3
|
||||
export LD_LIBRARY_PATH=/usr/arm-linux-gnueabihf/lib/
|
||||
ctest --output-on-failure -j$(nproc) --timeout 180
|
||||
ctest --output-on-failure
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/mips-linux-gnu.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
|
||||
- name: build
|
||||
run: cmake --build build --target all -j `nproc`
|
||||
run: cmake --build build --target all -j $(nproc)
|
||||
- name: test
|
||||
run: |-
|
||||
cd build
|
||||
sudo ln -sf /usr/mipsel-linux-gnu/lib/ld.so.1 /lib/ld.so.1
|
||||
export LD_LIBRARY_PATH=/usr/mipsel-linux-gnu/lib/
|
||||
ctest --output-on-failure -j$(nproc) --timeout 180
|
||||
ctest --output-on-failure
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/mips64el-linux-gnuabi64.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
|
||||
- name: build
|
||||
run: cmake --build build --target all -j `nproc`
|
||||
run: cmake --build build --target all -j $(nproc)
|
||||
- name: test
|
||||
run: |-
|
||||
cd build
|
||||
sudo ln -sf /usr/mips64el-linux-gnuabi64/lib64/ld.so.1 /lib64/ld.so.1
|
||||
export LD_LIBRARY_PATH=/usr/mips64el-linux-gnuabi64/lib
|
||||
ctest --output-on-failure -j$(nproc) --timeout 180
|
||||
ctest --output-on-failure
|
||||
|
@ -46,10 +46,10 @@ jobs:
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/riscv64-linux-gnu.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
|
||||
- name: build
|
||||
run: cmake --build build --target all -j `nproc`
|
||||
run: cmake --build build --target all -j $(nproc)
|
||||
- name: test
|
||||
run: |-
|
||||
cd build
|
||||
sudo ln -sf /usr/riscv64-linux-gnu/lib/ld-linux-riscv64-lp64d.so.1 /lib/ld-linux-riscv64-lp64d.so.1
|
||||
export LD_LIBRARY_PATH=/usr/riscv64-linux-gnu/lib
|
||||
ctest --output-on-failure -j$(nproc)
|
||||
ctest --output-on-failure
|
||||
|
@ -42,11 +42,11 @@ jobs:
|
||||
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON ..
|
||||
- name: build
|
||||
run: |
|
||||
cmake --build build -j `nproc`
|
||||
cmake --build build -j $(nproc)
|
||||
- name: test
|
||||
run: |
|
||||
cd build
|
||||
ctest --output-on-failure -j$(nproc)
|
||||
ctest --output-on-failure
|
||||
# - name: benchmark
|
||||
# run: |
|
||||
# ./build/sled_benchmark
|
||||
|
@ -43,11 +43,11 @@ jobs:
|
||||
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON ..
|
||||
- name: build
|
||||
run: |
|
||||
cmake --build build -j `nproc`
|
||||
cmake --build build -j $(nproc)
|
||||
- name: test
|
||||
run: |
|
||||
cd build
|
||||
ctest --output-on-failure -j$(nproc)
|
||||
# - name: benchmark
|
||||
# run: |
|
||||
# ./build/sled_benchmark
|
||||
ctest --output-on-failure
|
||||
- name: benchmark
|
||||
run: |
|
||||
./build/tile_bm_all
|
||||
|
@ -45,11 +45,11 @@ jobs:
|
||||
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: |
|
||||
cmake --build build -j `nproc`
|
||||
cmake --build build -j $(nproc)
|
||||
- name: test
|
||||
run: |
|
||||
cd build
|
||||
ctest --output-on-failure -j$(nproc)
|
||||
# - name: benchmark
|
||||
# run: |
|
||||
# ./build/sled_benchmark
|
||||
ctest --output-on-failure
|
||||
- name: benchmark
|
||||
run: |
|
||||
./build/tile_bm_all
|
||||
|
Loading…
Reference in New Issue
Block a user