Skip to content

Commit 35ab057

Browse files
Migrate GitHub Actions to Blacksmith runners
- Replace GitHub-hosted ubuntu runners with Blacksmith equivalents - Remove unused/deprecated workflow files where applicable - Use blacksmith-4vcpu-ubuntu-2404 for builds and tests - Use blacksmith-2vcpu-ubuntu-2404 for lightweight jobs
1 parent ffae637 commit 35ab057

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
jobs:
2121
check-dist:
22-
runs-on: ubuntu-latest
22+
runs-on: blacksmith-4vcpu-ubuntu-2404
2323

2424
steps:
2525
- uses: actions/checkout@v2

.github/workflows/close-inactive-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
close-issues:
8-
runs-on: ubuntu-latest
8+
runs-on: blacksmith-4vcpu-ubuntu-2404
99
permissions:
1010
issues: write
1111
pull-requests: write

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
CodeQL-Build:
1111

1212
# CodeQL runs on ubuntu-latest and windows-latest
13-
runs-on: ubuntu-latest
13+
runs-on: blacksmith-4vcpu-ubuntu-2404
1414

1515
steps:
1616
- name: Checkout repository

.github/workflows/licensed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: ubuntu-latest
13+
runs-on: blacksmith-4vcpu-ubuntu-2404
1414
name: Check licenses
1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/workflow.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
strategy:
2121
matrix:
22-
os: [ubuntu-latest, windows-latest, macOS-latest]
22+
os: [blacksmith-4vcpu-ubuntu-2404, windows-latest, macOS-latest]
2323
fail-fast: false
2424
runs-on: ${{ matrix.os }}
2525
steps:
@@ -52,7 +52,7 @@ jobs:
5252
test-save:
5353
strategy:
5454
matrix:
55-
os: [ubuntu-latest, windows-latest, macOS-latest]
55+
os: [blacksmith-4vcpu-ubuntu-2404, windows-latest, macOS-latest]
5656
fail-fast: false
5757
runs-on: ${{ matrix.os }}
5858
steps:
@@ -75,7 +75,7 @@ jobs:
7575
needs: test-save
7676
strategy:
7777
matrix:
78-
os: [ubuntu-latest, windows-latest, macOS-latest]
78+
os: [blacksmith-4vcpu-ubuntu-2404, windows-latest, macOS-latest]
7979
fail-fast: false
8080
runs-on: ${{ matrix.os }}
8181
steps:
@@ -97,7 +97,7 @@ jobs:
9797

9898
# End to end with proxy
9999
test-proxy-save:
100-
runs-on: ubuntu-latest
100+
runs-on: blacksmith-4vcpu-ubuntu-2404
101101
container:
102102
image: ubuntu:latest
103103
options: --dns 127.0.0.1
@@ -120,7 +120,7 @@ jobs:
120120
path: test-cache
121121
test-proxy-restore:
122122
needs: test-proxy-save
123-
runs-on: ubuntu-latest
123+
runs-on: blacksmith-4vcpu-ubuntu-2404
124124
container:
125125
image: ubuntu:latest
126126
options: --dns 127.0.0.1

0 commit comments

Comments
 (0)