Skip to content

Commit 55d000d

Browse files
committed
update scripts/ci
1 parent cb249ad commit 55d000d

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/civ2.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ env:
2020
PGDATABASE: postgres
2121
PGUSER: postgres
2222
POSTGRES_PASSWORD: postgres
23-
UV_LINK_MODE: copy
24-
UV_COMPILE_BYTECODE: 1
25-
UV_PROJECT_ENVIRONMENT: /tmp/venv
26-
UV_PYTHON_INSTALL_DIR: /tmp/venv/bin
27-
VIRTUAL_ENVIRONMENT: /tmp/venv
23+
2824

2925
jobs:
3026
# This builds a base postgres image that has everything installed to be able to run pgstac.
@@ -205,11 +201,12 @@ jobs:
205201
path: /tmp/wheels
206202
- name: Install pypgstac
207203
run: |
208-
uv venv --allow-existing --relocatable /tmp/venv
209-
/tmp/venv/bin/activate
204+
uv venv
205+
venv/bin/activate
210206
uv pip install psycopg[binary] psycopg-pool
211207
uv sync --frozen --no-install-project --extra test --extra dev
212-
for i in /tmp/wheels/pypgstac*x86_64.whl; do echo "Installing $i"; uv pip install pypgstac@$i; done
208+
uv pip install --offline --find-links /tmp/wheels pypgstac
209+
213210
214211
- name: Run tests
215212
run: |

0 commit comments

Comments
 (0)