diff options
| author | Jakob Unterwurzacher | 2025-02-09 21:32:58 +0100 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2025-02-09 22:15:40 +0100 | 
| commit | f31bc4a64c151244c92261a72f93b38cd9aacd5b (patch) | |
| tree | 2e3225feca2d2a922b5f7fd4de1a09feb9b97fe0 | |
| parent | cd47ab015e5d4a7ecaee747796fb89b7597b4fc1 (diff) | |
github ci: also run on arm64
| -rw-r--r-- | .github/workflows/ci.yml | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9b2a12..aecbd84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -48,7 +51,7 @@ 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      # Actual test steps are in the Makefile  | 
