bc91c7d71a
Some checks failed
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 24s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 24s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 24s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 24s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 24s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 17s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 7s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 8s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 7s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 7s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 7m48s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 1m28s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 32s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 3h7m56s
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
---
|
|
name: linux-mips64-gcc
|
|
on:
|
|
push:
|
|
paths:
|
|
- .gitea/workflows/linux-mips64-gcc.yml
|
|
- toolchains/mips64el-linux-gnuabi64.toolchain.cmake
|
|
- third_party/**
|
|
- tile/**
|
|
- "!tile/fiber/detail/asm/*"
|
|
- "tile/fiber/detail/asm/ucontext_mips64.*"
|
|
- CMakeLists.txt
|
|
- cmake/**
|
|
pull_request:
|
|
paths:
|
|
- .gitea/workflows/linux-mips64-gcc.yml
|
|
- "cmake/**"
|
|
- toolchains/mips64el-linux-gnuabi64.toolchain.cmake
|
|
- third_party/**
|
|
- tile/**
|
|
- "!tile/fiber/detail/asm/*"
|
|
- "tile/fiber/detail/asm/ucontext_mips64.*"
|
|
- CMakeLists.txt
|
|
- cmake/**
|
|
concurrency:
|
|
group: linux-mips64-gcc-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
permissions: read-all
|
|
jobs:
|
|
linux-gcc-mips64el:
|
|
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
|
|
sudo apt-get install -y g++-mips64el-linux-gnuabi64 qemu-user-binfmt
|
|
- name: configure
|
|
run: |
|
|
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)
|
|
- 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)
|