4d79500d07
Some checks failed
android / build (push) Failing after 14s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 12m52s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 13m2s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 17m55s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 20m15s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 11m39s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 8m2s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 13m20s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 11m31s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 7m44s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 6m47s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 13m40s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 14m7s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 53s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 1m11s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 10m11s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 8m58s
56 lines
1.7 KiB
YAML
56 lines
1.7 KiB
YAML
---
|
|
name: linux-aarch64-cpu-gcc
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".gitea/workflows/linux-aarch64-gcc.yml"
|
|
- "cmake/**"
|
|
- "toolchains/aarch64-linux-gnu.toolchain.cmake"
|
|
- "third_party/**"
|
|
- "tile/**"
|
|
- "!tile/fiber/detail/asm/*"
|
|
- "tile/fiber/detail/asm/ucontext_aarch64.*"
|
|
- "CMakeLists.txt"
|
|
- "cmake/**"
|
|
pull_request:
|
|
paths:
|
|
- ".gitea/workflows/linux-aarch64-gcc.yml"
|
|
- "cmake/**"
|
|
- "toolchains/aarch64-linux-gnu.toolchain.cmake"
|
|
- "third_party/**"
|
|
- "tile/**"
|
|
- "!tile/fiber/detail/asm/*"
|
|
- "tile/fiber/detail/asm/ucontext_aarch64.*"
|
|
- "CMakeLists.txt"
|
|
- "cmake/**"
|
|
concurrency:
|
|
group: linux-aarch64-cpu-gcc-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
linux-gcc-aarch64:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
build_type: ["Debug", "Release"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
# - name: install-tools
|
|
# run: |
|
|
# sudo apt-get update -y
|
|
# sudo apt-get install -y g++-aarch64-linux-gnu qemu-user-binfmt
|
|
- name: build
|
|
run: |
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/aarch64-linux-gnu.toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON ..
|
|
cmake --build . -j $(nproc)
|
|
- name: test
|
|
run: |-
|
|
cd build
|
|
sudo ln -sf /usr/aarch64-linux-gnu/lib/ld-linux-aarch64.so.1 /lib/ld-linux-aarch64.so.1
|
|
export LD_LIBRARY_PATH=/usr/aarch64-linux-gnu/lib
|
|
ctest --output-on-failure -j$(nproc) --timeout 180
|