-
Notifications
You must be signed in to change notification settings - Fork 4
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
Use dev harbor for staging images #28
Conversation
This tests our dev environment for CI / CD pipelines and allows us to prototype PRs here too.
1f7bd92
to
b30a6c5
Compare
We're running out of space on some of the builds, try to remove the caching layer to see if this gives us some breathing room instead
Bumps the various docker actions to the latest v3, which uses a newer version of node
Our builds are currently running out of space, lets increase the working area by freeing up approx 10GB of unused toolchains
- name: Free up additional space | ||
run : | | ||
sudo rm -rf /usr/share/dotnet | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe better:
- name: Free up additional space | |
run : | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- uses: jlumbroso/free-disk-space@v1.3.1 | |
with: | |
docker-images: false | |
large-packages: false |
or
- name: Free up additional space | |
run : | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- uses: jlumbroso/free-disk-space@v1.3.1 | |
with: | |
tool-cache: true | |
docker-images: false | |
large-packages: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 - I didn't realise there was an action now to handle this
I'll put in another commit once we get test.harbor
back up to give us a target to push to
This tests our dev environment for CI / CD pipelines and allows us to prototype PRs here too.