-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (54 loc) · 1.6 KB
/
build.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
name: CI/CD
on:
push:
branches:
- main
- feature/task_cwms_support
pull_request:
branches:
- main
- feature/task_cwms_support
permissions:
contents: write
jobs:
build:
name: Build, Test, and Analyze
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/[email protected]
with:
java-version: 17
distribution: 'temurin'
- name: Cache SonarCloud packages
uses: actions/[email protected]
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Setup Gradle
uses: gradle/[email protected]
with:
dependency-graph: generate-and-submit
- name: Build
run: ./gradlew build
# Disabled for now. Need test fixture updated to install the CCP schema
# - name: Integration Tests CWMS
# run: ./gradlew integrationTestCWMS --stacktrace --info
- name: Integration Tests OpenTSDB
run: ./gradlew integrationTestOpenTSDB --stacktrace --info
- name: Analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew sonar
- name: Upload WAR files
uses: actions/[email protected]
with:
name: warfile
path: ./**/build/libs/*.war
retention-days: 1
if-no-files-found: error