Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
NodudeWasTaken committed Jan 23, 2025
1 parent afafff5 commit 564d00b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/pgsql-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,6 @@ jobs:
--mount type=bind,source="$(pwd)/.go-cache",target=/root/.cache/go-build,consistency=delegated \
-w /stash $COMPILER_IMAGE tail -f /dev/null
- name: Install PostgreSQL development libraries
run: |
sudo apt-get update && sudo apt-get install -y postgresql-server-dev-16
- name: Clone PostgreSQL DLL project
run: |
git clone --recursive https://github.com/NodudeWasTaken/stash_pge.git
- name: Install PostgreSQL DLL
run: |
cd stash_pge
make install PGVER=16 DBNAME=dbname
- name: Generate Backend
run: docker exec -t build /bin/bash -c "make generate-backend"

Expand All @@ -80,6 +67,19 @@ jobs:
sleep 5;
done
- name: Install PostgreSQL development libraries
run: |
sudo apt-get update && sudo apt-get install -y postgresql-server-dev-16
- name: Clone PostgreSQL DLL project
run: |
git clone --recursive https://github.com/NodudeWasTaken/stash_pge.git
- name: Install PostgreSQL DLL
run: |
cd stash_pge
make install PGVER=16 DBNAME=dbname
- name: Run tests with PostgreSQL
env:
PGSQL_TEST: 'postgresql://username:password@localhost/dbname'
Expand Down

0 comments on commit 564d00b

Please sign in to comment.