-
Notifications
You must be signed in to change notification settings - Fork 21
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
Ability to ssh to github actions runnner. #343
Conversation
ssh via tmate will close the VM, if UT's fail. so put a sleep instead and build manually.
@@ -83,6 +83,7 @@ on: | |||
jobs: | |||
BuildHomestoreDeps: | |||
runs-on: ${{ inputs.platform }} | |||
timeout-minutes: 1440 |
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.
From net, to add this to keep the VM for longer time.
- name: Create and Test Package | ||
run: | | ||
sanitize=$([[ "${{ inputs.tooling }}" == "Sanitize" ]] && echo "True" || echo "False") | ||
pre=$([[ "${{ inputs.build-type }}" != "Debug" ]] && echo "-o sisl:prerelease=${{ inputs.prerelease }}" || echo "") | ||
sudo rm -rf /usr/local/lib/android/ |
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.
For sanitize build, VM is too low on space. By removing this unwanted folder, we get some 10G extra.
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.
makes sense; how is it used?
ssh via tmate will close the VM, if UT's fail. so put a sleep instead and build manually.