File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ # Use the latest 2.1 version of CircleCI pipeline process engine.
2+ # See: https://circleci.com/docs/2.0/configuration-reference
3+ version : 2.1
4+
5+ # Define a job to be invoked later in a workflow.
6+ # See: https://circleci.com/docs/2.0/configuration-reference/#jobs
7+ jobs :
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
11+ docker :
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
16+ steps :
17+ - checkout
18+ - run :
19+ name : " Make gradlew executable"
20+ command : " chmod +x gradlew"
21+ - run :
22+ name : " Build Project"
23+ command : |
24+ ./gradlew clean build
25+ environment :
26+ CIRCLE_CI : " true"
27+
28+ # Invoke jobs via workflows
29+ # See: https://circleci.com/docs/2.0/configuration-reference/#workflows
30+ workflows :
31+ build-workflow :
32+ jobs :
33+ - build
You can’t perform that action at this time.
0 commit comments