File tree 1 file changed +17
-6
lines changed
1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,28 @@ version: 2.1
6
6
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
7
7
jobs :
8
8
build :
9
+ # Specify the execution environment. You can specify an image from Dockerhub, or use one of our Convenience Images from CircleCI's Developer Hub.
10
+ # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
9
11
docker :
10
- - image : gradle:jdk8
12
+ - image : gradle:jdk17
13
+ description : " Build Linux DEB package"
14
+ # Add steps to the job
15
+ # See: https://circleci.com/docs/2.0/configuration-reference/#steps
11
16
steps :
17
+ - checkout
12
18
- run :
13
- name : Make ' gradlew' executable
14
- command : chmod +x ./ gradlew
19
+ name : " Make gradlew executable"
20
+ command : " chmod +x gradlew"
15
21
- run :
16
- name : Build Project
17
- command : ./gradlew clean build
22
+ name : " Build Project"
23
+ command : |
24
+ ./gradlew clean build
25
+ environment :
26
+ CIRCLE_CI : " true"
18
27
28
+ # Invoke jobs via workflows
29
+ # See: https://circleci.com/docs/2.0/configuration-reference/#workflows
19
30
workflows :
20
- echo :
31
+ build-workflow :
21
32
jobs :
22
33
- build
You can’t perform that action at this time.
0 commit comments