Skip to content
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
13 changes: 13 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ jobs:
- name: Check sizes of directories in tools cache
run: du -sh /opt/hostedtoolcache/* | sort -h

# A recent run of du -sh /opt/hostedtoolcache/* | sort -h yielded:
# 24K /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk
# 217M /opt/hostedtoolcache/Ruby
# 520M /opt/hostedtoolcache/PyPy
# 574M /opt/hostedtoolcache/node
# 1.1G /opt/hostedtoolcache/go
# 1.7G /opt/hostedtoolcache/CodeQL
# 1.9G /opt/hostedtoolcache/Python
# Since we are just building a Docker container we delete some unused
# pre-installed tools to make space.
- name: Free up disk space by deleting /opt/hostedtoolcache/CodeQL
run: rm -rf /opt/hostedtoolcache/CodeQL

# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ jobs:
packages: write

steps:
# A recent run of du -sh /opt/hostedtoolcache/* | sort -h yielded:
# 24K /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk
# 217M /opt/hostedtoolcache/Ruby
# 520M /opt/hostedtoolcache/PyPy
# 574M /opt/hostedtoolcache/node
# 1.1G /opt/hostedtoolcache/go
# 1.7G /opt/hostedtoolcache/CodeQL
# 1.9G /opt/hostedtoolcache/Python
# Since we are just building a Docker container we delete some unused
# pre-installed tools to make space.
- name: Free up disk space by deleting /opt/hostedtoolcache/CodeQL
run: rm -rf /opt/hostedtoolcache/CodeQL

# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ jobs:
packages: write

steps:
# A recent run of du -sh /opt/hostedtoolcache/* | sort -h yielded:
# 24K /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk
# 217M /opt/hostedtoolcache/Ruby
# 520M /opt/hostedtoolcache/PyPy
# 574M /opt/hostedtoolcache/node
# 1.1G /opt/hostedtoolcache/go
# 1.7G /opt/hostedtoolcache/CodeQL
# 1.9G /opt/hostedtoolcache/Python
# Since we are just building a Docker container we delete some unused
# pre-installed tools to make space.
- name: Free up disk space by deleting /opt/hostedtoolcache/CodeQL
run: rm -rf /opt/hostedtoolcache/CodeQL

# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
Expand Down