From 955bea93353a90e8475e9fea504ca7088b225860 Mon Sep 17 00:00:00 2001 From: Xiaoxi Chen Date: Wed, 4 Sep 2024 11:16:57 +0800 Subject: [PATCH] add tmate and logging disk sapce Signed-off-by: Xiaoxi Chen --- .github/workflows/build_dependencies.yml | 13 +++++++++++++ conanfile.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index 3b6978b..2b69444 100644 --- a/.github/workflows/build_dependencies.yml +++ b/.github/workflows/build_dependencies.yml @@ -172,6 +172,12 @@ jobs: - name: Build Cache run: | pre=$([[ "${{ inputs.build-type }}" != "Debug" ]] && echo "-o sisl:prerelease=${{ inputs.prerelease }}" || echo "") + echo "Disk space usage" + sudo df -h + sudo ls -l /tmp + sudo rm -rf $ANDROID_HOME + echo "Disk space usage after cleanup" + sudo df -h conan install \ -c tools.build:skip_test=True \ ${pre} \ @@ -228,6 +234,13 @@ jobs: fail_on_cache_miss: true if: ${{ inputs.testing == 'True' && github.event_name != 'pull_request' && steps.restore-cache.outputs.cache-hit != 'true' }} + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + with: + limit-access-to-actor: true + detached: true + if: ${{ inputs.testing == 'True' }} + - name: Create and Test Package run: | sanitize=$([[ "${{ inputs.tooling }}" == "Sanitize" ]] && echo "True" || echo "False") diff --git a/conanfile.py b/conanfile.py index 349e96d..854b96a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -9,7 +9,7 @@ class HomeObjectConan(ConanFile): name = "homeobject" - version = "2.0.13" + version = "2.0.14" homepage = "https://github.com/eBay/HomeObject" description = "Blob Store built on HomeReplication"