Skip to content

Commit 926b5d3

Browse files
kspeer825kspeer
andauthored
Qa/fix build (#139)
* fix libpq-dev install * install with apt-get Co-authored-by: kspeer <kspeer@stitchdata.com>
1 parent 680ee8b commit 926b5d3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
aws s3 cp s3://com-stitchdata-dev-deployment-assets/environments/tap-tester/tap_tester_sandbox dev_env.sh
2020
source dev_env.sh
2121
export LC_ALL=C
22-
apt install -y libpq-dev
22+
apt-get -qq update
23+
apt-get -qq install bundler libpq-dev
2324
pyenv local 3.5.6
2425
python3 -m venv /usr/local/share/virtualenvs/tap-postgres
2526
source /usr/local/share/virtualenvs/tap-postgres/bin/activate
@@ -34,7 +35,8 @@ jobs:
3435
command: |
3536
source dev_env.sh
3637
source /usr/local/share/virtualenvs/tap-tester/bin/activate
37-
apt install -y libpq-dev
38+
apt-get -qq update
39+
apt-get -qq install bundler libpq-dev
3840
pip install psycopg2==2.8.4
3941
run-test --tap=tap-postgres tests
4042
- slack/notify-on-failure:

0 commit comments

Comments
 (0)