Skip to content

Commit bc43ad7

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 8d21622 + a799c37 commit bc43ad7

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.circleci/config.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

0 commit comments

Comments
 (0)