Skip to content

Commit

Permalink
Merge pull request #204 from ldbc/use-maven-repository-in-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg authored Nov 27, 2021
2 parents 36f9e1d + f84a163 commit b077422
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
9 changes: 1 addition & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,8 @@ jobs:
steps:
- checkout
- run:
name: Setup
name: Install PostgreSQL client
command: |
export DEBIAN_FRONTEND=noninteractive
sudo apt update
# install dependencies
sudo apt install -y git
# clone, build, and install driver
git clone --depth 1 --branch 0.3.5 https://github.com/ldbc/ldbc_snb_driver && cd ldbc_snb_driver && mvn install -DskipTests && cd ..
# PostgreSQL
pip3 install --user --progress-bar off psycopg2-binary
- run:
name: Build project
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,15 @@
</pluginManagement>
</build>

<repositories>
<repository>
<id>snb-mvn</id>
<url>https://ldbcouncil.org/snb-mvn/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>

</project>

0 comments on commit b077422

Please sign in to comment.