sled/.gitea/workflows/linux-mips64-gcc.yml

54 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2024-03-29 10:34:30 +08:00
---
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
2024-04-01 10:55:41 +08:00
permissions: read-all
2024-03-29 10:34:30 +08:00
jobs:
linux-gcc-mips64el:
runs-on: ubuntu-20.04
2024-03-31 15:27:45 +08:00
strategy:
matrix:
2024-04-01 10:55:41 +08:00
build_type: [Debug, Release]
2024-03-29 10:34:30 +08:00
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
2024-03-29 10:34:30 +08:00
- 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"
2024-03-29 10:34:30 +08:00
- 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
2024-03-29 10:34:30 +08:00
ctest --output-on-failure -j`nproc`