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

91 lines
2.6 KiB
YAML
Raw Normal View History

2023-12-05 16:30:25 +08:00
name: linux-mips64-gcc
on:
2023-12-05 16:39:01 +08:00
push:
paths:
2023-12-13 13:04:36 +08:00
- ".gitea/workflows/linux-mips64-gcc.yml"
- "toolchains/mips64el-linux-gnuabi64.toolchain.cmake"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
- "cmake/**"
2023-12-05 16:39:01 +08:00
pull_request:
paths:
2023-12-13 13:04:36 +08:00
- ".gitea/workflows/linux-mips64-gcc.yml"
- "toolchains/mips64el-linux-gnuabi64.toolchain.cmake"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
- "cmake/**"
2023-12-05 16:30:25 +08:00
concurrency:
group: linux-mips64-gcc-${{ github.ref }}
cancel-in-progress: true
permissions:
- read
jobs:
linux-gcc-mips64el:
runs-on: ubuntu-20.04
steps:
2023-12-05 21:29:04 +08:00
- uses: actions/checkout@v4
with:
submodules: true
2023-12-05 16:30:25 +08:00
- name: cache-qemu
id: cache-qemu
uses: actions/cache@v3
with:
2023-12-05 16:36:23 +08:00
path: qemu-install
key: qemu-mips64el-install-20220502-2
2023-12-05 16:30:25 +08:00
2023-12-05 16:57:36 +08:00
- name: checkout-qemu
2023-12-05 17:30:48 +08:00
#uses: actions/checkout@v4
2023-12-05 16:30:25 +08:00
if: steps.cache-qemu.outputs.cache-hit != 'true'
2023-12-05 17:29:27 +08:00
run: |
mkdir qemu && cd qemu
git init
git remote add origin https://gitlab.com/qemu-project/qemu.git
2023-12-05 22:10:47 +08:00
git fetch --depth=1 origin f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65
2023-12-05 17:36:13 +08:00
git checkout f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65
2023-12-05 16:30:25 +08:00
2023-12-05 18:47:04 +08:00
- name: install-qemu-build-deps
if: steps.cache-qemu.outputs.cache-hit != 'true'
run: |
sudo apt-get update -y
sudo apt-get install -y autoconf automake autotools-dev ninja-build
2023-12-05 16:30:25 +08:00
- name: qemu
if: steps.cache-qemu.outputs.cache-hit != 'true'
run: |
2023-12-08 13:09:26 +08:00
cd $GITHUB_WORKSPACE/qemu
2023-12-05 16:30:25 +08:00
./configure --target-list=mips64el-linux-user --prefix=$GITHUB_WORKSPACE/qemu-install
make -j `nproc`
make install
- 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
2023-12-05 16:30:25 +08:00
- name: mips64el-gnuabi64-toolchain
run: |
2023-12-13 13:04:36 +08:00
sudo apt-get update -y
sudo apt-get install -y g++-mips64el-linux-gnuabi64
2023-12-05 16:30:25 +08:00
- name: configure
run: |
mkdir build && cd build
cmake .. -DULIB_BUILD_TESTS=ON -DCMAKE_TOOLCHAIN_FILE=../toolchains/mips64el-linux-gnuabi64.toolchain.cmake -DCMAKE_CROSSCOMPILING_EMULATOR="qemu-mips64el;-L;/usr/mips64el-linux-gnuabi64"
2023-12-05 16:30:25 +08:00
2023-12-05 18:19:30 +08:00
- name: build
2023-12-05 21:02:48 +08:00
run: cmake --build build --target all -j `nproc`
2023-12-05 18:19:30 +08:00
2023-12-05 16:30:25 +08:00
- name: test
run: |
export PATH=$GITHUB_WORKSPACE/qemu-install/bin:$PATH
cd build
2023-12-06 10:01:00 +08:00
ctest --output-on-failure -j`nproc`