This repository was archived by the owner on Mar 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (81 loc) · 2.87 KB
/
ci.yml
File metadata and controls
99 lines (81 loc) · 2.87 KB
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
name: CI Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build project
run: ./gradlew build -x test --no-daemon
- name: Run tests
run: ./gradlew test --no-daemon
- name: Generate JaCoCo coverage report
run: ./gradlew jacocoTestReport --no-daemon
- name: Upload JaCoCo coverage report
uses: actions/upload-artifact@v4
with:
name: jacoco-report
path: build/reports/jacoco/html/
retention-days: 14
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: build/reports/tests/test/
retention-days: 14
- name: JaCoCo Coverage Summary
if: always()
run: |
if [ -f build/reports/jacoco/html/index.html ]; then
echo "### JaCoCo Coverage Report Generated" >> $GITHUB_STEP_SUMMARY
echo "Coverage report uploaded as artifact." >> $GITHUB_STEP_SUMMARY
fi
security-scan:
runs-on: ubuntu-latest
needs: build-and-test # Run after tests pass
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run OWASP Dependency Check
run: ./gradlew dependencyCheckAnalyze --no-daemon
continue-on-error: true # Don't fail build on first run (takes time to download CVE database)
- name: Upload OWASP Dependency Check Report
uses: actions/upload-artifact@v4
if: always()
with:
name: dependency-check-report
path: build/reports/dependency-check-report.html
retention-days: 14
- name: Check for high severity vulnerabilities
run: |
if [ -f build/reports/dependency-check-report.json ]; then
HIGH_COUNT=$(cat build/reports/dependency-check-report.json | grep -c '"severity" : "HIGH"' || true)
CRITICAL_COUNT=$(cat build/reports/dependency-check-report.json | grep -c '"severity" : "CRITICAL"' || true)
echo "High severity: $HIGH_COUNT, Critical severity: $CRITICAL_COUNT"
if [ "$CRITICAL_COUNT" -gt 0 ]; then
echo "::error::Critical vulnerabilities found!"
exit 1
fi
fi