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 ecd7b99 commit 194a32fCopy full SHA for 194a32f
.circleci/config.yml
@@ -0,0 +1,33 @@
1
+version: 2
2
+jobs:
3
+ sample_integration_test:
4
+ working_directory: ~/dialogflow-java
5
+ filters:
6
+ branches:
7
+ only:
8
+ - master
9
+ - circleci-config
10
+ - dialogflow-ci-integration
11
+ tags:
12
+ only: /^v[\d.]+$/
13
+ docker:
14
+ - image: circleci/openjdk:8-jdk-browsers
15
+ steps:
16
+ - run:
17
+ name: Create Google Application Credential file
18
+ command: |
19
+ echo ${GOOGLE_APPLICATION_CREDENTIALS_CONTENT} > /tmp/key.json
20
+ # Add integration test command
21
22
+ name: Delete Google Application Credential file
23
+ when: always
24
25
+ rm /tmp/key.json
26
+ # Store test report
27
+workflows:
28
+ version: 2
29
30
+ jobs:
31
+ - sample_integration_test
32
+
33
0 commit comments