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: cache-qemu
|
|
|
|
id: cache-qemu
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: qemu-install
|
|
|
|
key: qemu-mips64el-install-20220502-2
|
|
|
|
- name: checkout-qemu
|
|
|
|
# uses: actions/checkout@v4
|
|
|
|
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
mkdir qemu && cd qemu
|
|
|
|
git init
|
|
|
|
git remote add origin https://gitlab.com/qemu-project/qemu.git
|
|
|
|
git fetch --depth=1 origin f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65
|
2024-03-31 02:15:00 +08:00
|
|
|
git checkout f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65
|
2024-03-29 10:34:30 +08:00
|
|
|
- name: install-qemu-build-deps
|
|
|
|
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
2024-03-31 02:15:00 +08:00
|
|
|
sudo apt-get install -y autoconf automake autotools-dev ninja-build
|
2024-03-29 10:34:30 +08:00
|
|
|
- name: qemu
|
|
|
|
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
cd $GITHUB_WORKSPACE/qemu
|
|
|
|
./configure --target-list=mips64el-linux-user --prefix=$GITHUB_WORKSPACE/qemu-install
|
|
|
|
make -j `nproc`
|
2024-03-31 02:15:00 +08:00
|
|
|
make install
|
2024-03-29 10:34:30 +08:00
|
|
|
- name: set-qemu-cache
|
|
|
|
uses: actions/cache/save@v3
|
|
|
|
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
|
|
|
with:
|
|
|
|
key: qemu-mips64el-install-20220502-2
|
|
|
|
path: qemu-install
|
|
|
|
- name: mips64el-gnuabi64-toolchain
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
2024-03-31 02:15:00 +08:00
|
|
|
sudo apt-get install -y cmake make g++-mips64el-linux-gnuabi64
|
2024-03-29 10:34:30 +08:00
|
|
|
- name: configure
|
|
|
|
run: |
|
|
|
|
mkdir build && cd build
|
2024-03-31 15:27:45 +08:00
|
|
|
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: |-
|
|
|
|
export PATH=$GITHUB_WORKSPACE/qemu-install/bin:$PATH
|
|
|
|
cd build
|
|
|
|
ctest --output-on-failure -j`nproc`
|