Skip to content

Commit 0a35f44

Browse files
committed
added circleci
1 parent a918776 commit 0a35f44

File tree

9 files changed

+33
-0
lines changed

9 files changed

+33
-0
lines changed

.circleci/config.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
resource_class: buildpulse/bp-ubuntu-latest-x64-4x
6+
docker:
7+
- image: cimg/android:2025.01
8+
steps:
9+
- checkout
10+
11+
- run:
12+
name: Set up JDK 17
13+
command: |
14+
sudo apt-get update
15+
sudo apt-get install openjdk-17-jdk
16+
17+
- run:
18+
name: Build with Gradle
19+
command: ./gradlew qa
20+
21+
- run:
22+
name: Archive reports for failed build
23+
command: |
24+
if [ $? -ne 0 ]; then
25+
mkdir -p ~/reports
26+
cp -r */build/reports/* ~/reports/
27+
fi
28+
29+
workflows:
30+
version: 2
31+
build-workflow:
32+
jobs:
33+
- test
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)