Skip to content

Commit 0aa712c

Browse files
remove region from workflow files as now redundant
1 parent f225332 commit 0aa712c

17 files changed

+31
-31
lines changed

.github/workflows/cargo-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
cargo-audit:
1515
name: cargo audit
16-
runs-on: [self-hosted, type-ccx13, in-hel1]
16+
runs-on: [self-hosted, type-ccx13]
1717
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-cargo-audit') }}
1818
steps:
1919
- name: Check-out repositoroy under $GITHUB_WORKSPACE

.github/workflows/check-bittensor-e2e-tests.yml.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ env:
2626

2727
jobs:
2828
check-label:
29-
runs-on: [self-hosted, type-ccx13, in-hel1]
29+
runs-on: [self-hosted, type-ccx13]
3030
outputs:
3131
skip-bittensor-e2e-tests: ${{ steps.get-labels.outputs.skip-bittensor-e2e-tests }}
3232
steps:
@@ -57,7 +57,7 @@ jobs:
5757
find-btcli-e2e-tests:
5858
needs: check-label
5959
if: needs.check-label.outputs.skip-bittensor-e2e-tests == 'false'
60-
runs-on: [self-hosted, type-ccx13, in-hel1]
60+
runs-on: [self-hosted, type-ccx13]
6161
outputs:
6262
test-files: ${{ steps.get-btcli-tests.outputs.test-files }}
6363
steps:
@@ -84,7 +84,7 @@ jobs:
8484
find-sdk-e2e-tests:
8585
needs: check-label
8686
if: needs.check-label.outputs.skip-bittensor-e2e-tests == 'false'
87-
runs-on: [self-hosted, type-ccx13, in-hel1]
87+
runs-on: [self-hosted, type-ccx13]
8888
outputs:
8989
test-files: ${{ steps.get-sdk-tests.outputs.test-files }}
9090
steps:
@@ -110,7 +110,7 @@ jobs:
110110

111111
build-image-with-current-branch:
112112
needs: check-label
113-
runs-on: [self-hosted, type-ccx33, in-hel1]
113+
runs-on: [self-hosted, type-ccx33]
114114
steps:
115115
- name: Checkout code
116116
uses: actions/checkout@v4
@@ -148,7 +148,7 @@ jobs:
148148
- find-btcli-e2e-tests
149149
- build-image-with-current-branch
150150
if: needs.check-label.outputs.skip-bittensor-e2e-tests == 'false'
151-
runs-on: [self-hosted, type-ccx13, in-hel1]
151+
runs-on: [self-hosted, type-ccx13]
152152
strategy:
153153
fail-fast: false
154154
max-parallel: 16
@@ -248,7 +248,7 @@ jobs:
248248
- find-sdk-e2e-tests
249249
- build-image-with-current-branch
250250
if: needs.check-label.outputs.skip-bittensor-e2e-tests == 'false'
251-
runs-on: [self-hosted, type-ccx13, in-hel1]
251+
runs-on: [self-hosted, type-ccx13]
252252
strategy:
253253
fail-fast: false
254254
max-parallel: 16

.github/workflows/check-devnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
jobs:
1212
check-spec-version:
1313
name: Check spec_version bump
14-
runs-on: [self-hosted, type-ccx33, in-hel1]
14+
runs-on: [self-hosted, type-ccx33]
1515
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-spec-version-bump') }}
1616
steps:
1717
- name: Dependencies

.github/workflows/check-docker.yml

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

66
jobs:
77
build:
8-
runs-on: [self-hosted, type-ccx33, in-hel1]
8+
runs-on: [self-hosted, type-ccx33]
99

1010
steps:
1111
- name: Checkout code

.github/workflows/check-finney.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
jobs:
1212
check-spec-version:
1313
name: Check spec_version bump
14-
runs-on: [self-hosted, type-ccx33, in-hel1]
14+
runs-on: [self-hosted, type-ccx33]
1515
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-spec-version-bump') }}
1616
steps:
1717
- name: Dependencies

.github/workflows/check-rust.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# runs cargo fmt
2424
cargo-fmt:
2525
name: cargo fmt
26-
runs-on: [self-hosted, type-ccx13, in-hel1]
26+
runs-on: [self-hosted, type-ccx13]
2727
env:
2828
RUST_BACKTRACE: full
2929
steps:
@@ -52,7 +52,7 @@ jobs:
5252

5353
cargo-clippy-default-features:
5454
name: cargo clippy
55-
runs-on: [self-hosted, type-ccx13, in-hel1]
55+
runs-on: [self-hosted, type-ccx13]
5656
env:
5757
RUST_BACKTRACE: full
5858
SKIP_WASM_BUILD: 1
@@ -82,7 +82,7 @@ jobs:
8282

8383
cargo-check-lints:
8484
name: check custom lints
85-
runs-on: [self-hosted, type-ccx13, in-hel1]
85+
runs-on: [self-hosted, type-ccx13]
8686
env:
8787
RUSTFLAGS: -D warnings
8888
RUST_BACKTRACE: full
@@ -115,7 +115,7 @@ jobs:
115115
116116
cargo-clippy-all-features:
117117
name: cargo clippy --all-features
118-
runs-on: [self-hosted, type-ccx13, in-hel1]
118+
runs-on: [self-hosted, type-ccx13]
119119
env:
120120
RUST_BACKTRACE: full
121121
SKIP_WASM_BUILD: 1
@@ -146,7 +146,7 @@ jobs:
146146
# runs cargo test --workspace --all-features
147147
cargo-test:
148148
name: cargo test
149-
runs-on: [self-hosted, type-ccx43, in-hel1]
149+
runs-on: [self-hosted, type-ccx43]
150150
env:
151151
RUST_BACKTRACE: full
152152
SKIP_WASM_BUILD: 1
@@ -176,7 +176,7 @@ jobs:
176176
# ensures cargo fix has no trivial changes that can be applied
177177
cargo-fix:
178178
name: cargo fix
179-
runs-on: [self-hosted, type-ccx13, in-hel1]
179+
runs-on: [self-hosted, type-ccx13]
180180
env:
181181
RUST_BACKTRACE: full
182182
SKIP_WASM_BUILD: 1
@@ -215,7 +215,7 @@ jobs:
215215
216216
check-feature-propagation:
217217
name: zepter run check
218-
runs-on: [self-hosted, type-ccx13, in-hel1]
218+
runs-on: [self-hosted, type-ccx13]
219219

220220
steps:
221221
- name: Checkout

.github/workflows/check-testnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
jobs:
1212
check-spec-version:
1313
name: Check spec_version bump
14-
runs-on: [self-hosted, type-ccx33, in-hel1]
14+
runs-on: [self-hosted, type-ccx33]
1515
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-spec-version-bump') }}
1616
steps:
1717
- name: Dependencies

.github/workflows/docker-localnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ permissions:
2424

2525
jobs:
2626
publish:
27-
runs-on: [self-hosted, type-ccx33, in-hel1]
27+
runs-on: [self-hosted, type-ccx33]
2828

2929
steps:
3030
- name: Determine Docker tag and ref

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions:
2323

2424
jobs:
2525
publish:
26-
runs-on: [self-hosted, type-ccx33, in-hel1]
26+
runs-on: [self-hosted, type-ccx33]
2727

2828
steps:
2929
- name: Determine Docker tag and ref

.github/workflows/evm-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
run:
20-
runs-on: [self-hosted, type-ccx33, in-hel1]
20+
runs-on: [self-hosted, type-ccx33]
2121
env:
2222
RUST_BACKTRACE: full
2323
steps:

0 commit comments

Comments
 (0)