Skip to content

Commit

Permalink
add aarch64 CI to GH actions
Browse files Browse the repository at this point in the history
we had a drone CI, but this was disabled and failed.
  • Loading branch information
rurban committed Mar 9, 2024
1 parent 99f6a24 commit 64b0f61
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ steps:
# https://docker-runner.docs.drone.io/configuration/trigger/
trigger:
branch:
- aarch64-m1
- archs
- master

Expand All @@ -36,9 +37,9 @@ steps:
- apt-get install -yq --no-install-suggests --no-install-recommends
build-essential file bash gcc make autotools-dev automake autoconf libtool
libtext-diff-perl pkg-config
- build-aux/autogen.sh
- build-aux/conf-make-check.sh
trigger:
branch:
- aarch64-m1
- archs
- master
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,20 @@ jobs:
# asset_path: ./configure.gz
# asset_name: configure.gz
# asset_content_type: application/gzip
aarch64:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.7.1
name: check on aarch64
id: runcmd
with:
arch: aarch64
githubToken: ${{ github.token }}
distro: ubuntu_latest
install: |
apt-get update -q -y
apt-get install -y make gcc grep bash file git automake autoconf which
libtool perl-Text-Diff pkg-config
run: build-aux/conf-make-check.sh

0 comments on commit 64b0f61

Please sign in to comment.