From 7e3e58b9a875e23845b94a303921b176bed9ec44 Mon Sep 17 00:00:00 2001 From: Atharva Arya Date: Fri, 12 Jul 2024 19:17:06 +0530 Subject: [PATCH] Test new base job --- .github/workflows/new_tests.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/new_tests.yml b/.github/workflows/new_tests.yml index 1adb6d63d49..e00a55e6dc7 100644 --- a/.github/workflows/new_tests.yml +++ b/.github/workflows/new_tests.yml @@ -39,10 +39,27 @@ defaults: shell: bash -l {0} jobs: + base: + name: base-${{ inputs.run_label }} + runs-on: ${{ inputs.run_os }} + steps: + - uses: actions/checkout@v4 + - run: ls + - uses: actions/upload-artifact@v4 + with: + name: tardis-repo + path: tardis + retention-days: 1 + non-continuum: - name: non-continuum-${{ inputs.run_label }} + # name: non-continuum-${{ inputs.run_label }} runs-on: ${{ inputs.run_os }} + needs: base steps: + - uses: actions/download-artifact@v4 + with: + name: tardis-repo + path: tardis - name: Setup tardis uses: ./.github/actions/setup_tardis with: @@ -58,9 +75,14 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'run-generation-tests') || github.ref == 'refs/heads/master' continuum_tests: - name: continuum-${{ inputs.run_label }} + # name: continuum-${{ inputs.run_label }} runs-on: ${{ inputs.run_label }} steps: + - uses: actions/download-artifact@v4 + with: + name: tardis-repo + path: tardis + - name: Setup tardis uses: ./.github/actions/setup_tardis with: