We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 284b1d4 commit 8fe385eCopy full SHA for 8fe385e
.circleci/config.yml
@@ -7,13 +7,16 @@ jobs:
7
steps:
8
- setup_remote_docker:
9
version: 20.10.14
10
- - run: ssh remote-docker \ git clone -b "$CIRCLE_BRANCH" "$CIRCLE_REPOSITORY_URL"
+ - checkout
11
+ - run:
12
+ name: Copy source
13
+ command: docker cp . /home/circleci/project
14
- run:
15
name: Run Pact Broker
16
command: docker-compose up -d
17
18
name: Analyze on SonarCloud
- command: ssh remote-docker \ mvn verify sonar:sonar
19
+ command: ssh remote-docker \ cd /home/circleci/project && mvn verify sonar:sonar
20
21
22
command: docker-compose down -d
0 commit comments