forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request quarkusio#36284 from gsmet/jdk-21
Test Java 21 on CI
- Loading branch information
Showing
10 changed files
with
84 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# this script might be useful to get some insights about the disk usage | ||
# obviously, it needs to be tuned adjusted | ||
|
||
# if you can actually write something to the disk and execute an action, | ||
# using ncdu to dump an analysis of the disk and upload it as an artifact | ||
# might be a better option that this adhoc script | ||
|
||
echo "# df -h" | ||
df -h | ||
echo "# du -sh /" | ||
sudo du -sh /* || true | ||
echo "# du -sh /home/runner/work/quarkus/quarkus/integration-tests/*" | ||
sudo du -sh /home/runner/work/quarkus/quarkus/integration-tests/* || true | ||
echo "# docker images" | ||
docker images || true | ||
echo "# du -sh /var/lib/*" | ||
sudo du -sh /var/lib/* || true | ||
echo "# du -sh /opt/hostedtoolcache/*" | ||
sudo du -sh /opt/hostedtoolcache/* || true | ||
echo "# du -sh /imagegeneration/installers/*" | ||
sudo du -sh /imagegeneration/installers/* || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters