Skip to content

Commit

Permalink
Switch workflows back to the default runner (#7812)
Browse files Browse the repository at this point in the history
Analyzing recent runs shows that the savings in run duration from using
larger runners are pretty small (on the order of 5%), which is not worth
the price.

Reverts #7723.
  • Loading branch information
SpecLad authored Apr 27, 2024
1 parent 9d2018f commit 9d5bb99
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

build:
needs: search_cache
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

rest_api_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

unit_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:

e2e_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
github.event.pull_request.draft == false &&
!startsWith(github.event.pull_request.title, '[WIP]') &&
!startsWith(github.event.pull_request.title, '[Dependent]')
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

build:
needs: search_cache
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

rest_api_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:

unit_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:

e2e_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:
publish_dev_images:
if: github.ref == 'refs/heads/develop'
needs: [rest_api_testing, unit_testing, e2e_testing]
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:
docker push "${UI_IMAGE_REPO}:dev"
codecov:
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
needs: [unit_testing, e2e_testing, rest_api_testing]
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
check_updates:
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
env:
REPO: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

build:
needs: search_cache
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:

unit_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
e2e_testing:
needs: build
runs-on: ubuntu-latest-big
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 9d5bb99

Please sign in to comment.