Skip to content

Commit 6f2a060

Browse files
authored
Merge pull request #40 from ko-build/imjasonh-patch-2
ci: test on arm
2 parents 2a5f936 + 79f378f commit 6f2a060

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/ci.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ on:
55

66
jobs:
77
test-ko-action:
8-
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
runner:
11+
- ubuntu-latest
12+
- ubuntu-latest-arm
13+
14+
runs-on: ${{matrix.runner}}
915

1016
steps:
1117
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0

.github/workflows/use-action.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
matrix:
1414
platform:
1515
- ubuntu-latest
16+
- ubuntu-latest-arm
1617
- macos-latest
1718

1819
runs-on: ${{ matrix.platform }}
@@ -30,13 +31,13 @@ jobs:
3031

3132
- run: ko publish --bare ./
3233

33-
- name: Install old release
34+
- name: Install specific release
3435
uses: ko-build/setup-ko@main
3536
with:
36-
version: v0.8.0
37+
version: v0.17.0
3738

3839
- name: Check installed version
39-
run: ko version | grep 0.8.0
40+
run: ko version | grep 0.17.0
4041

4142
- name: Install from tip
4243
uses: ko-build/setup-ko@main

0 commit comments

Comments
 (0)