Skip to content

Commit a4d93f4

Browse files
fixup circleci runner config
1 parent a729a91 commit a4d93f4

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@ jobs:
22
build:
33
machine: true
44
resource_class: brettwooldridge/ubuntu
5+
environment:
6+
JAVA_HOME: /usr/lib/jvm/java-11-openjdk-amd64
7+
58
steps:
69
# Manually clone via HTTPS using a token instead of the checkout step
710
- run:
811
name: Clone Repository via HTTPS Proxy
912
command: |
1013
git clone https://${GITHUB_TOKEN}@github.com/brettwooldridge/HikariCP.git .
1114
git checkout ${CIRCLE_SHA1}
12-
- run: mvn clean package
15+
- run:
16+
name: Build HikariCP
17+
command: |
18+
export PATH=$JAVA_HOME/bin:$PATH
19+
20+
mvn clean package

0 commit comments

Comments
 (0)