Skip to content

Commit

Permalink
Test out adding an arm64 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
evolarjun committed Jan 28, 2025
1 parent 198873c commit 63a1b77
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/linux-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ on:
push:

jobs:
build:

x86_linux:
runs-on: ubuntu-latest

steps:
Expand All @@ -28,3 +27,26 @@ jobs:
./*
test/*
retention-days: 14

x86_linux_arm:
runs-on: ubuntu-24.04-arm

steps:
- uses: actions/checkout@v4
- name: prerequisites
run: |
sudo apt-get update
sudo apt-get install -y ncbi-blast+
- name: make
run: make
- name: test
run: ./test_stxtyper.sh
- name: Upload artifacts on failure
uses: actions/upload-artifact@v4
if: ${{ failure() }} # only run if the job fails
with:
name: stxtyper-failed-test-linux
path: |
./*
test/*
retention-days: 14

0 comments on commit 63a1b77

Please sign in to comment.