-
Notifications
You must be signed in to change notification settings - Fork 135
132 lines (112 loc) · 3.8 KB
/
maven.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
130
131
132
name: Build and analyze
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- 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: "dfc3a63c86e79fe71dd4dccbd583f36089fd5371"
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -P code-coverage -P sonar-cloud --file pom.xml
- name: Archive plugin jar
uses: actions/upload-artifact@v3
with:
name: plugin-jar-file
path: target/*.jar
e2e:
needs: build
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Download a single artifact
uses: actions/download-artifact@v3
with:
name: plugin-jar-file
path: target
- name: Cache node_modules
id: cache-nodemodules
uses: actions/cache@v4
with:
path: |
~/.cache/Cypress
docker/e2e/node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Start containers
working-directory: docker
run: |
docker-compose up -d --build \
&& ./wait-until "curl -sLf -o /dev/null http://localhost:8024/realms/master" 300
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
working-directory: docker/e2e
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: npm install
- name: Run e2e tests
working-directory: docker/e2e
# Video recording turned off due to free GitHub CI runners seemingly not being powerful enough for it.
# Headed Chrome used to minimize issues with tests failing for no reason.
run: npx cypress run --headed --browser chrome --config video=false
- name: Archive videos
if: always()
uses: actions/upload-artifact@v3
with:
name: cypress-videos
path: docker/e2e/cypress/videos
- name: Archive screenshots
if: always()
uses: actions/upload-artifact@v3
with:
name: cypress-screenshots
path: docker/e2e/cypress/screenshots
- name: Display 'docker ps'
if: always()
run: docker ps
- name: Display legacy system logs
if: always()
run: docker logs keycloak_migration_demo_legacy-system-example_1
- name: Display Keycloak logs
if: always()
run: docker logs keycloak_migration_demo_keycloak_1
- name: Stop containers
if: always()
working-directory: docker
run: docker-compose down