Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bitner committed Oct 31, 2024
1 parent 9f3ab6c commit d38e9e2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/civ2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ jobs:
with:
working-directory: src/pypgstac
target: x86_64
args: --release --out ${{ env.GITHUB_WORKSPACE }}/dist
args: --release --out $GITHUB_WORKSPACE/dist
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
path: ${{ env.GITHUB_WORKSPACE }}/dist/*
path: $GITHUB_WORKSPACE/dist/*
if-no-files-found: error
test:
needs: [check-pgstac-base, check-pypgstac-base, buildpg, buildpypgstacbase, wheels]
Expand Down Expand Up @@ -173,15 +173,15 @@ jobs:
path: /tmp/wheels
- name: Check paths
run: |
ls ${{ env.GITHUB_WORKSPACE }}
ls $GITHUB_WORKSPACE
- name: Install pypgstac
run: |
cd ${{ env.GITHUB_WORKSPACE }}/src/pypgstac
cd $GITHUB_WORKSPACE/src/pypgstac
source $UV_PROJECT_ENVIRONMENT/bin/activate
uv pip install --offline --find-links /tmp/wheels pypgstac
- name: Run tests
run: |
cd ${{ env.GITHUB_WORKSPACE }}/src/pypgstac
cd $GITHUB_WORKSPACE/src/pypgstac
source $UV_PROJECT_ENVIRONMENT/bin/activate
$SCRIPTS/test
Expand Down

0 comments on commit d38e9e2

Please sign in to comment.