Skip to content

Commit

Permalink
Test new base job
Browse files Browse the repository at this point in the history
  • Loading branch information
atharva-2001 committed Jul 12, 2024
1 parent 93b73c7 commit 7e3e58b
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/new_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 7e3e58b

Please sign in to comment.