tqcq
2b2a6101b1
All checks were successful
linux-arm-gcc / linux-gcc-armhf (push) Successful in 1m23s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 1m42s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 1m52s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 2m5s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 2m31s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (push) Successful in 1m20s
Co-authored-by: tqcq <99722391+tqcq@users.noreply.github.com> Reviewed-on: #1
54 lines
1.6 KiB
YAML
54 lines
1.6 KiB
YAML
---
|
|
name: linux-mips64-gcc
|
|
on:
|
|
push:
|
|
paths:
|
|
- .gitea/workflows/linux-mips64-gcc.yml
|
|
- toolchains/mips64el-linux-gnuabi64.toolchain.cmake
|
|
- 3party/**
|
|
- include/**
|
|
- src/**
|
|
- tests/**
|
|
- CMakeLists.txt
|
|
- cmake/**
|
|
pull_request:
|
|
paths:
|
|
- .gitea/workflows/linux-mips64-gcc.yml
|
|
- toolchains/mips64el-linux-gnuabi64.toolchain.cmake
|
|
- 3party/**
|
|
- include/**
|
|
- src/**
|
|
- tests/**
|
|
- 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: true
|
|
- name: mips64el-gnuabi64-toolchain
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y cmake make g++-mips64el-linux-gnuabi64 qemu-user-binfmt
|
|
- name: configure
|
|
run: |
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DSLED_BUILD_TESTS=ON -DCMAKE_TOOLCHAIN_FILE=../toolchains/mips64el-linux-gnuabi64.toolchain.cmake #-DCMAKE_CROSSCOMPILING_EMULATOR="qemu-mips64el;-L;/usr/mips64el-linux-gnuabi64"
|
|
- name: build
|
|
run: cmake --build build --target all -j `nproc`
|
|
- name: test
|
|
run: |-
|
|
cd build
|
|
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`
|