Skip to content

Commit

Permalink
Add CI job for Linux aarch64/ARM64
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
  • Loading branch information
martin-g authored and mr-c committed Feb 15, 2023
1 parent d93fee9 commit cf54a5d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
build:
name: Linux x86_64
runs-on: ubuntu-latest

steps:
Expand All @@ -16,3 +17,26 @@ jobs:

- name: Build
run: make -j allall

build-aarch64:
name: Linux aarch64
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Build on Linux ARM64
uses: uraimo/run-on-arch-action@v2
with:
arch: aarch64
distro: ubuntu22.04
githubToken: ${{ github.token }}
dockerRunArgs: |
--volume "${PWD}:/hisat2"
install: |
apt-get update -q -y
apt-get install -q -y make g++
run: |
cd /hisat2
make -j allall

0 comments on commit cf54a5d

Please sign in to comment.