Skip to content

Commit

Permalink
worker disk space cleanup (#1156)
Browse files Browse the repository at this point in the history
  • Loading branch information
oren-zohar authored Jul 26, 2023
1 parent 7ca2442 commit 99f90ca
Show file tree
Hide file tree
Showing 3 changed files with 437 additions and 404 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/cloudbeat-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@ jobs:
runs-on: ubuntu-20.04
timeout-minutes: 15
steps:
# Disk cleanup
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

- name: Check out the repo
uses: actions/checkout@v3

Expand Down
16 changes: 14 additions & 2 deletions .github/workflows/eks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ concurrency: EKS-Functional-Tests

jobs:
Setup:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
timeout-minutes: 40
Expand All @@ -54,9 +54,21 @@ jobs:

Build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
# Disk cleanup
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

- name: Check out the repo
uses: actions/checkout@v3

Expand Down
Loading

0 comments on commit 99f90ca

Please sign in to comment.