Skip to content

Commit

Permalink
Installation and artifact fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
atharva-2001 committed Jul 12, 2024
1 parent 7e3e58b commit bf43f57
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup_tardis/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ runs:
- name: Install package editable
shell: bash
run: |
pip install -e .
pip install -e . --user
16 changes: 8 additions & 8 deletions .github/workflows/new_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@ jobs:
runs-on: ${{ inputs.run_os }}
steps:
- uses: actions/checkout@v4
- run: ls
- uses: actions/upload-artifact@v4
with:
name: tardis-repo
path: tardis
name: tardis-repo-${{ inputs.run_label }}
path: ./
retention-days: 1

non-continuum:
Expand All @@ -58,8 +57,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: tardis-repo
path: tardis
name: tardis-repo-${{ inputs.run_label }}
path: ./

- name: Setup tardis
uses: ./.github/actions/setup_tardis
with:
Expand All @@ -80,9 +80,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: tardis-repo
path: tardis
name: tardis-repo-${{ inputs.run_label }}
path: ./

- name: Setup tardis
uses: ./.github/actions/setup_tardis
with:
Expand Down

0 comments on commit bf43f57

Please sign in to comment.