Skip to content

Commit

Permalink
move to self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
himaster committed Nov 14, 2024
1 parent 8f8640a commit 7f7944a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ["self-hosted", "k8s-prod-ubuntu-22"]
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
MNEMONIC_TEST_ACCOUNT: ${{ secrets.MNEMONIC_TEST_ACCOUNT }}
Expand All @@ -24,7 +24,7 @@ jobs:
- run: npm run lint

test:
runs-on: ubuntu-latest
runs-on: ["self-hosted", "k8s-prod-ubuntu-22"]
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
MNEMONIC_TEST_ACCOUNT: ${{ secrets.MNEMONIC_TEST_ACCOUNT }}
Expand All @@ -46,7 +46,7 @@ jobs:
- run: npm test

coverage:
runs-on: ubuntu-latest
runs-on: ["self-hosted", "k8s-prod-ubuntu-22"]
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
MNEMONIC_TEST_ACCOUNT: ${{ secrets.MNEMONIC_TEST_ACCOUNT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: CI

jobs:
docker:
runs-on: ubuntu-latest
runs-on: ["self-hosted", "k8s-prod-ubuntu-22"]
steps:
-
name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:
IMAGE_NAME: ${{ vars.DOCKERHUB_ORG_NAME }}/saddle_tests
jobs:
dockerize:
runs-on: ubuntu-20.04
runs-on: ["self-hosted", "k8s-prod"]
steps:
- uses: actions/checkout@v3
- name: Define tag
Expand Down

0 comments on commit 7f7944a

Please sign in to comment.