From efdac11d07eae233ed5dfb89e83be07207bfe2ae Mon Sep 17 00:00:00 2001 From: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com> Date: Thu, 26 Oct 2023 17:06:21 +0100 Subject: [PATCH] GH Actions: fix rsync test workflow --- .github/workflows/test_rsync_test_script.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_rsync_test_script.yml b/.github/workflows/test_rsync_test_script.yml index e87313c83..14a9209d1 100644 --- a/.github/workflows/test_rsync_test_script.yml +++ b/.github/workflows/test_rsync_test_script.yml @@ -15,7 +15,7 @@ on: jobs: test: runs-on: ${{ matrix.os }} - timeout-minutes: 2 + timeout-minutes: 5 strategy: fail-fast: false matrix: @@ -23,7 +23,7 @@ jobs: python-version: [ '2.7', '3.5', '3.6', - '3.7', '3.8', '3.9' + '3.7', '3.8', '3.9', '3.12' ] steps: @@ -34,10 +34,24 @@ jobs: path: rose - name: Configure Python + id: configure-py uses: actions/setup-python@v4 + continue-on-error: true with: python-version: ${{ matrix.python-version }} + - name: Setup mamba + if: steps.configure-py.outcome == 'failure' + uses: conda-incubator/setup-miniconda@v2 + with: + python-version: ${{ matrix.python-version }} + mamba-version: '*' + channels: conda-forge + + - name: Mamba info + if: steps.configure-py.outcome == 'failure' + run: mamba info + - name: Unit Tests working-directory: rose run: |