Skip to content

Commit ebe869c

Browse files
authored
Fix conda out of space error (#4338)
* Update build_conda_pkg.yaml
1 parent e922858 commit ebe869c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build_conda_pkg.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ jobs:
2424
with:
2525
ref: ${{ github.event.pull_request.head.ref }}
2626
repository: ${{ github.event.pull_request.head.repo.full_name }}
27-
sparse-checkout: .
27+
- name: Free up space
28+
run: |
29+
sudo rm -rf /usr/share/dotnet
30+
sudo rm -rf /opt/ghc
31+
sudo rm -rf "/usr/local/share/boost"
32+
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
33+
shell: bash
2834
- name: Install Dependencies
2935
run: |
3036
pip install virtualenv

docs/source/release_notes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Release Notes
1616
* Enhancements
1717
* Fixes
1818
* Fixed bug related to pypi release github action failing :pr:`4330`
19-
* Fixed bug related to conda build github action :pr:`4335`, :pr:`4337`
19+
* Fixed bug related to conda build github action :pr:`4335` :pr:`4337`, :pr:`4338`
2020
* Changes
2121
* Documentation Changes
2222
* Testing Changes

0 commit comments

Comments
 (0)