2021-11-15 11:03:25 +00:00
|
|
|
name: CI executor-robot
|
2021-10-06 16:47:53 +00:00
|
|
|
on:
|
2021-10-14 15:49:09 +00:00
|
|
|
push:
|
|
|
|
branches: [main, dev]
|
|
|
|
paths:
|
|
|
|
- "executor-base/**"
|
2021-11-15 10:59:27 +00:00
|
|
|
- "executor-robot/**"
|
|
|
|
- "common/**"
|
2021-10-14 15:49:09 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [main, dev]
|
|
|
|
paths:
|
|
|
|
- "executor-base/**"
|
2021-11-15 10:59:27 +00:00
|
|
|
- "executor-robot/**"
|
|
|
|
- "common/**"
|
2021-10-06 16:47:53 +00:00
|
|
|
|
2021-10-14 15:49:09 +00:00
|
|
|
workflow_dispatch:
|
2021-10-06 16:47:53 +00:00
|
|
|
jobs:
|
2021-10-14 15:49:09 +00:00
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up JDK 11
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 11
|
|
|
|
- name: Cache SonarCloud packages
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.sonar/cache
|
|
|
|
key: ${{ runner.os }}-sonar
|
|
|
|
restore-keys: ${{ runner.os }}-sonar
|
|
|
|
- name: Cache Maven packages
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.m2
|
|
|
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-m2
|
2021-11-15 10:59:27 +00:00
|
|
|
- name: Build executorBase
|
|
|
|
run: mvn -f common/pom.xml -B install
|
2021-10-14 15:49:09 +00:00
|
|
|
- name: Build executorBase
|
2021-10-17 10:14:01 +00:00
|
|
|
run: mvn -f executor-base/pom.xml -B install
|
2021-10-14 15:49:09 +00:00
|
|
|
- name: Build and analyze
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
2021-11-15 10:59:27 +00:00
|
|
|
run: mvn -f executor-robot/pom.xml -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=scs-asse-fs21-group1_tapas-executor1
|