Skip to content

Commit

Permalink
Ability to ssh to github actions runnner.
Browse files Browse the repository at this point in the history
ssh via tmate will close the VM, if UT's fail. so put a sleep instead
and build manually.
  • Loading branch information
sanebay committed Mar 1, 2024
1 parent dcaad8f commit 6870656
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 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:
BuildHomestoreDeps:
runs-on: ${{ inputs.platform }}
timeout-minutes: 1440
steps:
- name: Retrieve Code
uses: actions/checkout@v3
Expand Down Expand Up @@ -206,6 +207,13 @@ jobs:
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")
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "5.1.10"
version = "5.1.11"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down

0 comments on commit 6870656

Please sign in to comment.