Skip to content

Commit 57abc29

Browse files
authored
ci: change runners (#303)
Signed-off-by: Ales Verbic <[email protected]>
1 parent db8cccc commit 57abc29

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/ci-docker.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Docker CI
22

33
on:
44
pull_request:
5-
branches: ['main','release/**']
6-
paths: ['Dockerfile','bin/**','config/**','.github/workflows/ci-docker.yml']
5+
branches: ["main", "release/**"]
6+
paths:
7+
["Dockerfile", "bin/**", "config/**", ".github/workflows/ci-docker.yml"]
78

89
env:
910
REGISTRY: ghcr.io
@@ -14,7 +15,7 @@ permissions:
1415

1516
jobs:
1617
build-amd64:
17-
runs-on: ubuntu-latest
18+
runs-on: [self-hosted, Linux, X64, ansible]
1819
steps:
1920
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 https://github.com/actions/checkout/releases/tag/v5.0.0
2021
- name: qemu

.github/workflows/conventional-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
name: Conventional Commits
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, Linux, X64, ansible]
1313
permissions:
1414
contents: read
1515
steps:

.github/workflows/publish.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: publish
22

33
on:
44
push:
5-
branches: ['main']
6-
tags: ['v*.*.*']
5+
branches: ["main"]
6+
tags: ["v*.*.*"]
77

88
concurrency: ${{ github.ref }}
99

@@ -12,9 +12,8 @@ env:
1212
GHCR_IMAGE_NAME: ghcr.io/blinklabs-io/cardano-node
1313

1414
jobs:
15-
1615
build-amd64:
17-
runs-on: ubuntu-latest
16+
runs-on: [self-hosted, Linux, X64, ansible]
1817
permissions:
1918
contents: read
2019
packages: write
@@ -148,7 +147,7 @@ jobs:
148147
done
149148
150149
multi-arch-manifest:
151-
runs-on: ubuntu-latest
150+
runs-on: [self-hosted, Linux, X64, ansible]
152151
needs: [build-amd64, build-arm64]
153152
permissions:
154153
contents: read
@@ -287,12 +286,12 @@ jobs:
287286
short-description: "Cardano Node built from source on Debian"
288287

289288
github-release:
290-
runs-on: ubuntu-latest
289+
runs-on: [self-hosted, Linux, X64, ansible]
291290
permissions:
292291
contents: write
293292
needs: [multi-arch-manifest]
294293
steps:
295-
- run: "echo \"RELEASE_TAG=${GITHUB_REF#refs/tags/}\" >> $GITHUB_ENV"
294+
- run: 'echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV'
296295
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 https://github.com/actions/github-script/releases/tag/v8.0.0
297296
if: startsWith(github.ref, 'refs/tags/')
298297
with:

0 commit comments

Comments
 (0)