Skip to content

Commit

Permalink
Qa/fix build (#139)
Browse files Browse the repository at this point in the history
* fix libpq-dev install

* install with apt-get

Co-authored-by: kspeer <[email protected]>
  • Loading branch information
kspeer825 and kspeer authored Jun 2, 2022
1 parent 680ee8b commit 926b5d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
aws s3 cp s3://com-stitchdata-dev-deployment-assets/environments/tap-tester/tap_tester_sandbox dev_env.sh
source dev_env.sh
export LC_ALL=C
apt install -y libpq-dev
apt-get -qq update
apt-get -qq install bundler libpq-dev
pyenv local 3.5.6
python3 -m venv /usr/local/share/virtualenvs/tap-postgres
source /usr/local/share/virtualenvs/tap-postgres/bin/activate
Expand All @@ -34,7 +35,8 @@ jobs:
command: |
source dev_env.sh
source /usr/local/share/virtualenvs/tap-tester/bin/activate
apt install -y libpq-dev
apt-get -qq update
apt-get -qq install bundler libpq-dev
pip install psycopg2==2.8.4
run-test --tap=tap-postgres tests
- slack/notify-on-failure:
Expand Down

0 comments on commit 926b5d3

Please sign in to comment.