2024-06-11 19:13:30 +08:00
|
|
|
---
|
|
|
|
name: linux-arm-gcc
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- .gitea/workflows/linux-arm-gcc.yml
|
|
|
|
- "cmake/**"
|
|
|
|
- toolchains/arm-linux-gnueabi.toolchain.cmake
|
|
|
|
- toolchains/arm-linux-gnueabihf.toolchain.cmake
|
|
|
|
- third_party/**
|
|
|
|
- tile/**
|
|
|
|
- "!tile/fiber/detail/asm/*"
|
|
|
|
- "tile/fiber/detail/asm/ucontext_arm.*"
|
|
|
|
- CMakeLists.txt
|
|
|
|
- cmake/**
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- .gitea/workflows/linux-arm-gcc.yml
|
|
|
|
- "cmake/**"
|
|
|
|
- toolchains/arm-linux-gnueabi.toolchain.cmake
|
|
|
|
- toolchains/arm-linux-gnueabihf.toolchain.cmake
|
|
|
|
- third_party/**
|
|
|
|
- tile/**
|
|
|
|
- "!tile/fiber/detail/asm/*"
|
|
|
|
- "tile/fiber/detail/asm/ucontext_arm.*"
|
|
|
|
- CMakeLists.txt
|
|
|
|
- cmake/**
|
|
|
|
concurrency:
|
|
|
|
group: linux-arm-gcc-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
linux-gcc-arm:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
build_type: ["Debug", "Release"]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-06-16 09:13:33 +08:00
|
|
|
# - name: install-tools
|
|
|
|
# run: |
|
|
|
|
# sudo apt-get update -y
|
|
|
|
# sudo apt-get install -y g++-arm-linux-gnueabi qemu-user-binfmt
|
2024-06-17 15:33:07 +08:00
|
|
|
- name: configure
|
2024-06-11 19:13:30 +08:00
|
|
|
run: |
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabi.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_TESTS=ON ..
|
2024-06-17 15:33:07 +08:00
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
cd build
|
2024-06-11 19:13:30 +08:00
|
|
|
cmake --build . -j $(nproc)
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
cd build
|
2024-06-20 21:27:54 +08:00
|
|
|
#sudo ln -sf /usr/arm-linux-gnueabi/lib/ld-linux.so.3 /lib/ld-linux.so.3
|
|
|
|
#export LD_LIBRARY_PATH=/usr/arm-linux-gnueabi/lib
|
2024-06-17 14:52:25 +08:00
|
|
|
ctest --output-on-failure -j $(nproc)
|
2024-06-11 19:13:30 +08:00
|
|
|
|
|
|
|
linux-gcc-armhf:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
build_type: ["Debug", "Release"]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: arm-gnu-toolchain
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
|
|
|
sudo apt-get install -y cmake make g++-arm-linux-gnueabihf qemu-user-binfmt
|
2024-06-17 15:33:07 +08:00
|
|
|
- name: configure
|
2024-06-11 19:13:30 +08:00
|
|
|
run: |
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabihf.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
|
2024-06-17 15:33:07 +08:00
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
cd build
|
2024-06-11 19:13:30 +08:00
|
|
|
cmake --build . -j $(nproc)
|
|
|
|
- name: test
|
|
|
|
run: |-
|
|
|
|
cd build
|
2024-06-20 21:27:54 +08:00
|
|
|
# sudo 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/
|
2024-06-17 14:52:25 +08:00
|
|
|
ctest --output-on-failure -j $(nproc)
|