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

build-info: update Gluon to 2025-03-09 #38

Merged
merged 2 commits into from
Mar 10, 2025
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
2 changes: 1 addition & 1 deletion .github/build-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"gluon": {
"repository": "freifunk-gluon/gluon",
"branch": "main",
"commit": "7cc3ebddd7ea32ae14167389535cbc7d1df95d8e"
"commit": "cf9f0f92d8f74f5564732787e1786cf8c9908d0f"
},
"container": {
"version": "main"
Expand Down
22 changes: 22 additions & 0 deletions .github/free-runner-space.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env bash

# For a List of pre-installed packages on the runner image see
# https://github.com/actions/runner-images/tree/main?tab=readme-ov-file#available-images

echo "Disk space before cleanup"
df -h

# Remove packages not required to run the Gluon build CI
sudo apt-get -y remove \
dotnet-* \
firefox \
google-chrome-stable \
kubectl \
microsoft-edge-stable \
temurin-*-jdk

# Remove Android SDK tools
sudo rm -rf /usr/local/lib/android

echo "Disk space after cleanup"
df -h
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@ jobs:
- name: Print meminfo
run: cat /proc/meminfo

- name: Remove non-required software
run: bash .github/free-runner-space.sh

- name: Download prepared OpenWrt
uses: actions/download-artifact@v4
with:
Expand Down