Skip to content

Commit

Permalink
github ci: also run on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
rfjakob committed Feb 9, 2025
1 parent cd47ab0 commit af70095
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ jobs:
- "1.21.x"
- "oldstable" # 2nd-latest Golang upstream stable
- "stable" # Latest Go upstream stable
os:
- "ubuntu-24.04"
- "ubuntu-24.04-arm"
# Don't cancel everything when one Go version fails
fail-fast: false
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:

- name: Install Go ${{ matrix.go }}
Expand All @@ -48,8 +51,13 @@ jobs:
- run: ./build-without-openssl.bash
- uses: actions/upload-artifact@v4
with:
name: gocryptfs static binary (Go ${{ matrix.go }})
name: gocryptfs {{ github.sha }} static ${{ runner.arch }} binary, Go ${{ matrix.go }}
path: gocryptfs

- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"

# Actual test steps are in the Makefile
- run: make ci

0 comments on commit af70095

Please sign in to comment.