-
Notifications
You must be signed in to change notification settings - Fork 39
86 lines (83 loc) · 3.12 KB
/
iroha2-pr.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
name: Iroha2-java pull requests workflow
on:
pull_request:
branches: [ iroha2-dev, iroha2-main ]
push:
branches: feature/DOPS-3309/sonar-dojo
jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'liberica'
# - name: Cache Gradle packages
# uses: actions/cache@v3
# with:
# path: |
# ~/.gradle/caches
# ~/.gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
# - name: Build with Gradle
# run: ./gradlew build --info
# - name: Upload build reports
# if: failure()
# uses: actions/upload-artifact@v3
# with:
# name: build-reports
# path: /home/runner/work/iroha-java/iroha-java/**/index.html
# - name: Cleanup Gradle Cache
# # Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
# # Restoring these files from a GitHub Actions cache might cause problems for future builds.
# run: |
# rm -f ~/.gradle/caches/modules-2/modules-2.lock
# rm -f ~/.gradle/caches/modules-2/gc.properties
sonarqube-defectdojo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'liberica'
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Test Sonarqube with Gradle
run: ./gradlew clean test --continue jacocoTestReport sonarqube -Dsonar.token=${{ secrets.SONAR_TOKEN }}
# - name: SonarQube
# uses: sonarsource/sonarqube-scan-action@master
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# with:
# args: >
# -Dcommunity.rust.clippy.reportPaths=lints/clippy.json
# -Dcommunity.rust.lcov.reportPaths=lints/lcov.info
# - name: DefectDojo
# id: defectdojo
# uses: C4tWithShell/[email protected]
# with:
# token: ${{ secrets.DEFECTOJO_TOKEN }}
# defectdojo_url: ${{ secrets.DEFECTOJO_URL }}
# product_type: iroha2-java
# engagement: ${{ github.ref_name }}
# tools: "SonarQube API Import,Github Vulnerability Scan"
# sonar_projectKey: hyperledger:iroha-java
# github_token: ${{ secrets.GITHUB_TOKEN }}
# github_repository: ${{ github.repository }}
# product: ${{ github.repository }}
# environment: Test
# reports: '{"Github Vulnerability Scan": "github.json"}'