-
Notifications
You must be signed in to change notification settings - Fork 5
110 lines (94 loc) · 2.65 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# © 2024. TU Dortmund University,
# Institute of Energy Systems, Energy Efficiency and Energy Economics,
# Research group Distribution grid planning and operation
#
name: CI
on:
push:
branches:
- main
- dev
- 'feature/*'
- 'hotfix/*'
- 'release/*'
pull_request:
branches:
- main
- dev
jobs:
build:
runs-on: ubuntu-latest
container:
image: gradle:8.10-jdk17
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Check if it's a pull request
ref: ${{ github.event.pull_request.head.ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Check Branch & Files
run: |
git config --global --add safe.directory /__w/simona/simona
git rev-parse --abbrev-ref HEAD
pwd
ls -la
- name: Checking Gradle & Java
run: |
java -version && gradle --version
- name: Building Project
run: |
./gradlew clean assemble
ls -la
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: simona-build
path: |
./build/classes/**
./build/resources/test/**
./build/libs/**
gradle/wrapper/**
gradle/scripts/**
gradlew
build.gradle
settings.gradle
test:
needs: build
runs-on: ubuntu-latest
container:
image: gradle:8.10-jdk17
steps:
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Checking Gradle & Java
run: |
java -version && gradle --version
- name: Download Build Artifact
uses: actions/download-artifact@v3
with:
name: simona-build
- name: Running tests
run: |
gradle --no-daemon --info --refresh-dependencies spotlessCheck pmdMain pmdTest
- name: Generate JavaDoc
run: |
set +x
cd simona
./gradlew javadoc