Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): reduce runner sizing to 4 core and free tier #17785

Merged
merged 2 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
test-cli:
runs-on: [linux, ubuntu-20.04-8core]
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: 0
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
cross-linux:
name: Cross - ${{ matrix.target }}
runs-on: [linux, ubuntu-20.04-8core]
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: 0
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ env:

jobs:
test-integration:
runs-on: [linux, ubuntu-20.04-8core]
timeout-minutes: 30
runs-on: [linux, ubuntu-20.04-4core]
timeout-minutes: 40
if: inputs.if || github.event_name == 'workflow_dispatch'
steps:
- name: (PR comment) Get PR branch
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/k8s_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

build-x86_64-unknown-linux-gnu:
name: Build - x86_64-unknown-linux-gnu
runs-on: [linux, ubuntu-20.04-8core]
runs-on: [linux, ubuntu-20.04-4core]
needs: changes
if: github.event_name != 'pull_request' || needs.changes.outputs.k8s == 'true'
# cargo-deb requires a release build, but we don't need optimizations for tests
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
# See https://github.community/t/feature-request-and-use-case-example-to-allow-matrix-in-if-s/126067
compute-k8s-test-plan:
name: Compute K8s test plan
runs-on: [linux, ubuntu-20.04-8core]
runs-on: ubuntu-latest
needs: changes
if: github.event_name != 'pull_request' || needs.changes.outputs.k8s == 'true'
outputs:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

test-e2e-kubernetes:
name: K8s ${{ matrix.kubernetes_version.version }} / ${{ matrix.container_runtime }} (${{ matrix.kubernetes_version.role }})
runs-on: [linux, ubuntu-20.04-8core]
runs-on: [linux, ubuntu-20.04-4core]
needs:
- build-x86_64-unknown-linux-gnu
- compute-k8s-test-plan
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
test-misc:
runs-on: [linux, ubuntu-20.04-8core]
runs-on: [linux, ubuntu-20.04-4core]
env:
CARGO_INCREMENTAL: 0
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
check-msrv:
runs-on: [ubuntu-20.04]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ jobs:

build-baseline:
name: Build baseline Vector container
runs-on: [linux, ubuntu-20.04-8core]
runs-on: [linux, ubuntu-20.04-4core]
needs:
- compute-metadata
steps:
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:

build-comparison:
name: Build comparison Vector container
runs-on: [linux, soak-builder]
runs-on: [linux, ubuntu-20.04core]
neuronull marked this conversation as resolved.
Show resolved Hide resolved
needs:
- compute-metadata
steps:
Expand Down
Loading