sled/.gitea/workflows/linux-arm-gcc.yml
tqcq 12fa524c3f
Some checks failed
linux-arm-gcc / linux-gcc-arm (push) Failing after 1m19s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (push) Failing after 1m1s
linux-arm-gcc / linux-gcc-armhf (push) Successful in 1m37s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 1m43s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 1m49s
linux-arm-gcc / linux-gcc-arm (pull_request) Failing after 21s
linux-arm-gcc / linux-gcc-armhf (pull_request) Successful in 1m44s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (pull_request) Successful in 1m6s
linux-mips64-gcc / linux-gcc-mips64el (Release) (pull_request) Successful in 2m19s
linux-x64-gcc / linux-gcc (Debug) (pull_request) Successful in 1m53s
linux-x64-gcc / linux-gcc (Release) (pull_request) Successful in 1m16s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (pull_request) Failing after 12m13s
feat use qemu-user-binfmt
2024-04-02 11:26:36 +08:00

68 lines
2.1 KiB
YAML

---
name: linux-arm-gcc
on:
push:
paths:
- .gitea/workflows/linux-arm-gcc.yml
- toolchains/arm-linux-gnueabi.toolchain.cmake
- toolchains/arm-linux-gnueabihf.toolchain.cmake
- 3party/**
- include/**
- src/**
- tests/**
- CMakeLists.txt
- cmake/**
pull_request:
paths:
- .gitea/workflows/linux-arm-gcc.yml
- toolchains/arm-linux-gnueabi.toolchain.cmake
- toolchains/arm-linux-gnueabihf.toolchain.cmake
- 3party/**
- include/**
- src/**
- tests/**
- CMakeLists.txt
- cmake/**
concurrency:
group: linux-arm-gcc-${{ github.ref }}
cancel-in-progress: true
jobs:
linux-gcc-arm:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: arm-gnu-toolchain
run: |
sudo apt-get update -y
sudo apt-get install -y cmake make g++-arm-linux-gnueabi qemu-static
- name: build
run: |
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabi.toolchain.cmake -DSLED_BUILD_TESTS=ON -DSLED_BUILD_TESTS=ON ..
cmake --build . -j $(nproc)
- name: test
run: |
cd build
ln -sf /usr/arm-linux-gnueabi/lib/ld-linux.so.3
export LD_LIBRARY_PATH=/usr/arm-linux-gnueabi/lib
qemu-arm ctest --output-on-failure -j$(nproc)
linux-gcc-armhf:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: arm-gnu-toolchain
run: |
sudo apt-get update -y
sudo apt-get install -y cmake make g++-arm-linux-gnueabihf qemu-user-binfmt
- name: build
run: |
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabihf.toolchain.cmake -DSLED_BUILD_TESTS=ON ..
cmake --build . -j $(nproc)
- name: test
run: |-
cd build
ln -sf /usr/arm-linux-gnueabihf/lib/ld-linux-armhf.so.3 /lib/ld-linux-armhf.so.3
export LD_LIBRARY_PATH=/usr/arm-linux-gnueabihf/lib/
ctest --output-on-failure -j$(nproc)