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

ci: fix disk out of space for GHA (attempt 2) #12671

Merged
merged 8 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 6 additions & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
root-reserve-mb: 10240
temp-reserve-mb: 10240
- uses: actions/checkout@v3
- name: Setup Rust toolchain
run: rustup show
Expand All @@ -38,6 +40,8 @@ jobs:

mkdir artifact
cp -R target/doc/* artifact
- name: Show available storage
run: df -h
- name: Install cargo-docset
uses: taiki-e/install-action@v2
with:
Expand All @@ -57,7 +61,8 @@ jobs:
uses: actions/upload-pages-artifact@v1
with:
path: artifact

- name: Show available storage
run: df -h
deploy:
needs: build
permissions:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
root-reserve-mb: 2048
- uses: actions/checkout@v3
- name: Setup Rust toolchain
run: |
Expand Down
Loading