From 3329f3c6e3b62452c4c623a126a2fb5847393572 Mon Sep 17 00:00:00 2001 From: Sanal P Date: Thu, 29 Feb 2024 18:19:10 -0700 Subject: [PATCH] Ability to ssh to github actions runnner. ssh via tmate will close the VM, if UT's fail. so put a sleep instead and build manually. --- .github/workflows/build_dependencies.yml | 9 +++++++++ conanfile.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index e0cbf5fb7..ce275c547 100644 --- a/.github/workflows/build_dependencies.yml +++ b/.github/workflows/build_dependencies.yml @@ -83,6 +83,7 @@ on: jobs: BuildHomestoreDeps: runs-on: ${{ inputs.platform }} + timeout-minutes: 1440 steps: - name: Retrieve Code uses: actions/checkout@v3 @@ -206,10 +207,18 @@ 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") 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 }} \ diff --git a/conanfile.py b/conanfile.py index de3a12195..15dccedba 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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"