-
Notifications
You must be signed in to change notification settings - Fork 50
60 lines (57 loc) · 2.02 KB
/
test-instalation.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
#
# #%L
# AEM Rules for SonarQube
# %%
# Copyright (C) 2015-2024 VML
# %%
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# #L%
#
name: Test if SonarQube Server starts up with AEM Rules installed
on: [push]
jobs:
install_aem_rules_with_docker:
runs-on: ubuntu-latest
name: Install AEM Rules on SonarQube with Docker
strategy:
matrix:
sonarqube-image:
- 'sonarqube:9.9-community'
- 'sonarqube:lts-community'
- 'sonarqube:latest'
fail-fast: false
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
cache: maven
- run: mvn clean package
- name: Get Exectuable name
id: get-executable-name
run: |
AEM_RULES_JAR_NAME=$(mvn -q -Dexec.executable=echo \
-Dexec.args='${project.artifactId}-${project.version}.jar' \
--non-recursive exec:exec)
echo "::set-output name=aem_rules_jar_name::$AEM_RULES_JAR_NAME"
- name: Install AEM Rules on SonarQube Server with Docker
uses: ./.github/actions/test-plugin-installation
with:
sonarqube-base-image: ${{ matrix.sonarqube-image }}
aem-rules-binary: ${{ steps.get-executable-name.outputs.aem_rules_jar_name }}
docker-hub-login: ${{ secrets.DOCKER_HUB_USERNAME }}
docker-hub-token: ${{ secrets.DOCKER_HUB_TOKEN }}