-
Notifications
You must be signed in to change notification settings - Fork 29
129 lines (121 loc) · 4.37 KB
/
sonarquest-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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# This is the CI Action for SonarQuest to automatically build Docker images on master push and release.
name: SonarQuest-CI
# Controls when the action will run.
on:
push:
release:
types: [ released, prereleased, edited ]
workflow_dispatch:
jobs:
backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build backend with Maven
run: mvn -f ./sonarQuest-backend/pom.xml --batch-mode --update-snapshots verify
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
if: ${{ github.event_name == 'release' || (github.event_name == 'push' && github.ref == 'refs/heads/master') }}
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image - Release
uses: docker/build-push-action@v2
if: ${{ github.event_name == 'release' }}
with:
context: ./sonarQuest-backend
push: true
tags: |
ghcr.io/viadee/sonarquest-backend:latest
ghcr.io/viadee/sonarquest-backend:${{ github.event.release.tag_name }}
- name: Build and push Docker image - Nightly
uses: docker/build-push-action@v2
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
context: ./sonarQuest-backend
push: true
tags: ghcr.io/viadee/sonarquest-backend:nightly
frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup node.js
uses: actions/setup-node@v1
with:
node-version: '10.9.0'
- name: Install dependencies
run: |
cd sonarQuest-frontend
npm i
- name: Build Angular app
run: |
cd sonarQuest-frontend
npm run build:prod
- name: Test
run: |
cd sonarQuest-frontend
npm test
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
if: ${{ github.event_name == 'release' || (github.event_name == 'push' && github.ref == 'refs/heads/master') }}
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image - Release
uses: docker/build-push-action@v2
if: ${{ github.event_name == 'release' }}
with:
context: ./sonarQuest-frontend
push: true
tags: |
ghcr.io/viadee/sonarquest-frontend:latest
ghcr.io/viadee/sonarquest-frontend:${{ github.event.release.tag_name }}
- name: Build and push Docker image - Nightly
uses: docker/build-push-action@v2
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
context: ./sonarQuest-frontend
push: true
tags: ghcr.io/viadee/sonarquest-frontend:nightly
analyze:
name: SonarCloud Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'zulu' # Alternative distribution options are available.
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -f ./sonarQuest-backend/pom.xml -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=viadee_sonarQuest