Skip to content

Commit

Permalink
Merge pull request #9381 from yyforyongyu/fix-no-space-left
Browse files Browse the repository at this point in the history
workflows: fix no space left error
  • Loading branch information
guggero authored Dec 20, 2024
2 parents 8859dbc + 1167181 commit fe48e65
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
name: Sqlc check
runs-on: ubuntu-latest
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3

Expand All @@ -60,6 +63,9 @@ jobs:
name: RPC and mobile compilation check
runs-on: ubuntu-latest
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3

Expand Down Expand Up @@ -88,6 +94,9 @@ jobs:
name: check commits
runs-on: ubuntu-latest
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3
with:
Expand All @@ -111,6 +120,9 @@ jobs:
name: lint code
runs-on: ubuntu-latest
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -151,6 +163,9 @@ jobs:
- name: arm
sys: darwin-arm64 freebsd-arm linux-armv6 linux-armv7 linux-arm64 windows-arm
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3

Expand All @@ -171,6 +186,9 @@ jobs:
name: sample configuration check
runs-on: ubuntu-latest
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3

Expand Down Expand Up @@ -201,6 +219,9 @@ jobs:
- unit-module

steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -273,6 +294,9 @@ jobs:
- name: neutrino
args: backend=neutrino cover=1
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -420,6 +444,9 @@ jobs:
- github.com/golang/protobuf v1.5.3

steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3

Expand All @@ -434,6 +461,9 @@ jobs:
runs-on: ubuntu-latest
if: '!contains(github.event.pull_request.labels.*.name, ''no-changelog'')'
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: git checkout
uses: actions/checkout@v3

Expand Down

0 comments on commit fe48e65

Please sign in to comment.