Skip to content

Commit

Permalink
Ability to ssh to github actions runner
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonYao287 committed Mar 29, 2024
1 parent 0f1b2ff commit 8befa0b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ on:
jobs:
BuildHomeObjectDeps:
runs-on: ${{ inputs.platform }}
timeout-minutes: 1440
steps:
- name: Retrieve Code
uses: actions/checkout@v3
Expand Down Expand Up @@ -228,11 +229,19 @@ jobs:
key_prefix: HomestoreDeps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }}
fail_on_cache_miss: true
if: ${{ inputs.testing == 'True' && github.event_name != 'pull_request' && steps.restore-cache.outputs.cache-hit != 'true' }}

- uses: actions/checkout@v3
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
detached: true

- 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/
conan create \
${pre} \
-o sisl:malloc_impl=${{ inputs.malloc-impl }} \
Expand Down

0 comments on commit 8befa0b

Please sign in to comment.