Skip to content

Commit 2c1ec5c

Browse files
committed
ci: test self hosted runner
1 parent 34ba6de commit 2c1ec5c

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,24 @@ name: CI
33
on:
44
push:
55
branches:
6+
- test/ci
67
- main
78

89
env:
910
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}
1011

1112
jobs:
1213
build:
13-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.runner }}
1415
strategy:
1516
fail-fast: false
1617
matrix:
17-
platform:
18-
- linux/amd64
19-
- linux/arm64
18+
include:
19+
- platform: linux/amd64
20+
runner: ubuntu-latest
21+
- platform: linux/arm64
22+
runner: self-hosted
23+
2024
steps:
2125
- name: Checkout
2226
uses: actions/checkout@v4

0 commit comments

Comments
 (0)