We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bc1ea0 commit 640de80Copy full SHA for 640de80
.github/workflows/toolchain_build.yml
@@ -75,6 +75,12 @@ jobs:
75
echo Creating artifact staging directory...
76
mkdir "$ARTIFACT_STAGING_DIR"
77
78
+ echo ::group::Log free disk space
79
+ df -h || true
80
+ du -h / --max-depth 3 || true
81
+ du -h /__w --max-depth 3 || true
82
+ echo ::endgroup::
83
+
84
# Git warns about this repo having dubious ownership - ignore.
85
git config --global --add safe.directory "$(pwd)"
86
@@ -84,6 +90,9 @@ jobs:
90
"${{ matrix.target }}" \
91
"${{ matrix.output_dir }}"
92
93
+ - name: Log free disk space
94
+ run: df -h
95
87
96
- name: Build Clang toolchain
88
97
run: |
89
98
./build-clang-with-args.sh \
0 commit comments