Skip to content

Commit 6c0b2c9

Browse files
committed
github/workflows: Switch to self hosted runners
Switch to Zededa's self hosted runners on build and publish workflows. Signed-off-by: Renê de Souza Pinto <rene@renesp.com.br>
1 parent 69a41d6 commit 6c0b2c9

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
include:
21-
- os: buildjet-4vcpu-ubuntu-2204-arm
21+
- os: zededa-ubuntu-2204
2222
arch: arm64
23-
- os: buildjet-4vcpu-ubuntu-2004
23+
- os: zededa-ubuntu-2204
2424
arch: amd64
25-
- os: buildjet-4vcpu-ubuntu-2004
25+
- os: zededa-ubuntu-2204
2626
arch: riscv64
2727
steps:
2828
- name: Starting Report
@@ -77,7 +77,7 @@ jobs:
7777
7878
eve:
7979
needs: packages # all packages for all platforms must be built first
80-
runs-on: buildjet-4vcpu-ubuntu-2004
80+
runs-on: zededa-ubuntu-2204
8181
strategy:
8282
fail-fast: false
8383
matrix:

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
include:
22-
- os: arm64-secure
22+
- os: zededa-ubuntu-2204
2323
arch: arm64
24-
- os: ubuntu-24.04
24+
- os: zededa-ubuntu-2204
2525
arch: amd64
26-
- os: ubuntu-latest
26+
- os: zededa-ubuntu-2204
2727
arch: riscv64
2828
steps:
2929
- name: Starting Report
@@ -66,7 +66,7 @@ jobs:
6666
# sadly, our build sometimes times out on network access
6767
# and running out of disk space: re-trying for 3 times
6868
for i in 1 2 3; do
69-
if make -e V=1 LINUXKIT_PKG_TARGET=push PRUNE=1 pkgs; then
69+
if make -e V=1 ZARCH=${{ matrix.arch }} LINUXKIT_PKG_TARGET=push PRUNE=1 pkgs; then
7070
SUCCESS=true
7171
break
7272
else
@@ -98,7 +98,7 @@ jobs:
9898
eve:
9999
if: github.event.repository.full_name == 'lf-edge/eve'
100100
needs: packages
101-
runs-on: ubuntu-latest
101+
runs-on: zededa-ubuntu-2204
102102
strategy:
103103
fail-fast: false
104104
matrix:
@@ -126,7 +126,7 @@ jobs:
126126
verification:
127127
if: github.event.repository.full_name == 'lf-edge/eve'
128128
needs: packages
129-
runs-on: ubuntu-latest
129+
runs-on: zededa-ubuntu-2204
130130
strategy:
131131
fail-fast: false
132132
matrix:
@@ -144,7 +144,7 @@ jobs:
144144

145145
manifest:
146146
if: github.event.repository.full_name == 'lf-edge/eve'
147-
runs-on: ubuntu-latest
147+
runs-on: zededa-ubuntu-2204
148148
needs: packages
149149
steps:
150150
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)