Skip to content

Commit a1fdd35

Browse files
fixup circleci runner config
1 parent d2c5844 commit a1fdd35

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

.circleci/config.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
jobs:
2-
build: # name of your job
3-
machine: true # executor type
2+
build:
3+
machine: true
44
resource_class: brettwooldridge/ubuntu
5-
65
steps:
7-
# Commands run in a Linux virtual machine environment
8-
- checkout
6+
# Manually clone via HTTPS using a token instead of the checkout step
7+
- run:
8+
name: Clone Repository via HTTPS Proxy
9+
command: |
10+
export HTTPS_PROXY="http://proxy.example.com:3128"
11+
git clone https://${GITHUB_TOKEN}@github.com/brettwooldridge/HikariCP.git .
12+
git checkout ${CIRCLE_SHA1}
913
- run: mvn clean package
10-

0 commit comments

Comments
 (0)