Skip to content

Commit

Permalink
Replace larger-runners with ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Nov 24, 2023
1 parent a9a51f3 commit cdab5be
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 94 deletions.
77 changes: 0 additions & 77 deletions .github/workflows/e2e.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/monorepo-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
cancel-in-progress: true
jobs:
check-env:
runs-on: larger-runner
runs-on: ubuntu-latest
# assign output from step to job output
outputs:
gcloud-service-key: ${{ steps.gcloud-service-key.outputs.defined }}
Expand All @@ -27,7 +27,7 @@ jobs:
run: echo "::set-output name=defined::true"

build-and-push-to-gcr:
runs-on: larger-runner
runs-on: ubuntu-latest

# uses check-env to determine if secrets.GCLOUD_SERVICE_KEY is defined
needs: [check-env]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: write
pull-requests: write
name: Release
runs-on: larger-runner
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true
jobs:
check-env:
runs-on: larger-runner
runs-on: ubuntu-latest
# assign output from step to job output
outputs:
gcloud-service-key: ${{ steps.gcloud-service-key.outputs.defined }}
Expand All @@ -26,7 +26,7 @@ jobs:
run: echo "::set-output name=defined::true"

build-and-push-to-gcr:
runs-on: larger-runner
runs-on: ubuntu-latest

# uses check-env to determine if secrets.GCLOUD_SERVICE_KEY is defined
needs: [check-env]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-skipped.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ env:

jobs:
test-rs:
runs-on: larger-runner
runs-on: ubuntu-latest

steps:
- run: 'echo "No test required" '

lint-rs:
runs-on: larger-runner
runs-on: ubuntu-latest

steps:
- run: 'echo "No lint required" '
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
slither:
runs-on: larger-runner
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
Expand Down
20 changes: 11 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

jobs:
install:
runs-on: larger-runner
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
fi
build:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v3
Expand All @@ -75,7 +75,7 @@ jobs:
run: yarn build

lint-prettier:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
fi
unit-test:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
working-directory: ./rust

agent-e2e:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [agent-build]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
E2E_KATHY_MESSAGES: '20'

cli-e2e:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [build, agent-build]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -232,7 +232,9 @@ jobs:
- name: build-cache
uses: actions/cache@v3
with:
path: ./*
path: |
./solidity
./typescript
key: ${{ github.sha }}

- name: agent-build-cache
Expand All @@ -248,7 +250,7 @@ jobs:
working-directory: ./typescript/cli

env-test:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [build]
strategy:
matrix:
Expand All @@ -266,7 +268,7 @@ jobs:
run: cd typescript/infra && ./fork.sh ${{ matrix.environment }} ${{ matrix.module }}

coverage:
runs-on: larger-runner
runs-on: ubuntu-latest
needs: [build]

steps:
Expand Down

0 comments on commit cdab5be

Please sign in to comment.