diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4c32cd3d..2ca24d4a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,10 +3,10 @@ name: CI on: push: branches: - - master + - "*" pull_request: branches: - - master + - "*" jobs: build: @@ -50,31 +50,3 @@ jobs: cmake .. make -j file libhmsbeagle/libhmsbeagle.so.* | grep aarch64 - -# build-aarch64: -# name: Build on Linux aarch64 -# runs-on: ubuntu-latest -# -# steps: -# - name: Checkout -# uses: actions/checkout@v4 -# -# - name: Build -# uses: uraimo/run-on-arch-action@v2 -# with: -# arch: aarch64 -# distro: ubuntu20.04 -# githubToken: ${{ github.token }} -# dockerRunArgs: | -# --volume "${PWD}:/beagle-lib" -# install: | -# apt-get update -q -y -# apt-get install -q -y cmake gcc g++ openjdk-11-jdk file -# run: | -# export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-arm64 -# cd /beagle-lib -# mkdir build -# cd build -# cmake .. -# make -j -# file libhmsbeagle/libhmsbeagle.so.* | grep aarch64