Skip to content

Commit

Permalink
fix: runs-on: [self-hosted, eks] > runs-on: eks
Browse files Browse the repository at this point in the history
  • Loading branch information
Skylar Simoncelli committed Oct 22, 2024
1 parent 8f54dd0 commit 84876b9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
# id-token: write
# contents: write
# needs: generate-chain-specs
# runs-on: [self-hosted, eks]
# runs-on: eks
# steps:
# - name: Checkout
# uses: actions/checkout@v4
Expand All @@ -146,7 +146,7 @@ jobs:
# id-token: write
# contents: write
# needs: [build-and-publish-ecr, upload-chain-specs]
# runs-on: [self-hosted, eks]
# runs-on: eks
# steps:
# - name: Checkout
# uses: actions/checkout@v4
Expand All @@ -166,7 +166,7 @@ jobs:
# K8S_SA_TOKEN: ${{ secrets.K8S_SA_TOKEN }}

deploy-staging-preview:
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Deploy
run: |
Expand All @@ -175,7 +175,7 @@ jobs:
shell: bash

partner-chain-ready:
runs-on: [self-hosted, eks]
runs-on: eks
needs: deploy-staging-preview
outputs:
deployment_mc_epoch: ${{ steps.mc-epoch.outputs.deployment_mc_epoch }}
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
id-token: write
contents: read
needs: partner-chain-ready
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -229,7 +229,7 @@ jobs:
id-token: write
contents: read
needs: run-smoke-tests
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -256,7 +256,7 @@ jobs:
id-token: write
contents: read
needs: partner-chain-ready
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
id-token: write
contents: read
needs: wait-for-n1-epoch
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
id-token: write
contents: read
needs: wait-for-n1-epoch
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:
id-token: write
contents: read
needs: wait-for-n2-epoch
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -412,7 +412,7 @@ jobs:
# id-token: write
# contents: write
# needs: staging-preview-tests
# runs-on: [self-hosted, eks]
# runs-on: eks
# steps:
# - name: Checkout
# uses: actions/checkout@v4
Expand All @@ -436,7 +436,7 @@ jobs:
# id-token: write
# contents: write
# needs: deploy-staging-preprod
# runs-on: [self-hosted, eks]
# runs-on: eks
# steps:
# - name: Checkout
# uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
argocd-tests:
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged == false)
needs: [build, deploy-argocd]
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
upload-chain-specs:
if: github.event_name == 'pull_request' && github.event.pull_request.merged == true
needs: build
runs-on: [self-hosted, eks]
runs-on: eks
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:

jobs:
deploy:
runs-on: [self-hosted, eks]
runs-on: eks
permissions:
id-token: write
contents: write
Expand Down

0 comments on commit 84876b9

Please sign in to comment.