Skip to content

Commit

Permalink
ci: update workflows to use latitude.sh based runners (#1044)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <nathan@swirldslabs.com>
  • Loading branch information
nathanklick authored Aug 29, 2024
1 parent 54fc12c commit 616a07f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
build:
name: Build
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
test:
name: Unit and Integration Tests
if: success()
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium

needs:
- build
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
run-examples:
name: Run Examples
if: success()
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium

needs:
- build
Expand Down Expand Up @@ -168,4 +168,4 @@ jobs:
run: task run-examples

- name: Stop the local node
run: npx @hashgraph/hedera-local stop
run: npx @hashgraph/hedera-local stop
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
test:
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium
strategy:
matrix:
version: [ 'current', 'latest' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/previewnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

build:
name: Build
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
build:
name: Build
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

test:
name: Test
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
Expand All @@ -76,7 +76,7 @@ jobs:

golangci:
name: lint
runs-on: [ self-hosted, Linux, medium, ephemeral ]
runs-on: client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
Expand Down

0 comments on commit 616a07f

Please sign in to comment.