1 parent d2c5844 commit a1fdd35Copy full SHA for a1fdd35
1 file changed
.circleci/config.yml
@@ -1,10 +1,13 @@
1
jobs:
2
- build: # name of your job
3
- machine: true # executor type
+ build:
+ machine: true
4
resource_class: brettwooldridge/ubuntu
5
-
6
steps:
7
- # Commands run in a Linux virtual machine environment
8
- - checkout
+ # Manually clone via HTTPS using a token instead of the checkout step
+ - run:
+ 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}
13
- run: mvn clean package
0 commit comments