-
Notifications
You must be signed in to change notification settings - Fork 9
68 lines (59 loc) · 2.21 KB
/
sonar_analysis.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
name: CI
on:
pull_request:
types: [opened, edited, reopened, synchronize]
workflow_dispatch:
env:
GH_TOKEN: ${{ secrets.GIT_TOKEN_SECRET }}
OWNER: ${{ github.repository_owner }}
REPO: ${{ github.event.repository.name }}
PR_NUMBER: ${{ github.event.number }}
SONAR_HOST_URL: "https://sonarqube.trustly.one"
SONAR_PROJECT_KEY: "trustly-ios"
SONAR_PROJECT_NAME: "trustly-ios"
jobs:
SonarQube:
runs-on: macOS-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Install CocoaPods
run: |
gem install cocoapods
pod install --project-directory=Example
- name: Generate Compilation Database
run: |
xcodebuild -workspace Example/TrustlySDK.xcworkspace \
-scheme TrustlySDK-Example \
-destination 'platform=iOS Simulator,name=iPhone 15,OS=17.4' \
clean build \
| tee xcodebuild.log | xcpretty --report json-compilation-database \
> compile_commands.json
- name: Verify Compilation Database
run: |
cat compile_commands.json
- name: Install sonar-scanner
run: |
brew update
brew install sonar-scanner
- name: Run SonarQube Analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_SECRET }}
run: |
sonar-scanner \
-Dsonar.host.url=${{ env.SONAR_HOST_URL }} \
-Dsonar.login=${{ env.SONAR_TOKEN }} \
-Dsonar.projectKey=${{ env.SONAR_PROJECT_KEY }} \
-Dsonar.projectName=${{ env.SONAR_PROJECT_NAME }} \
-Dsonar.pullrequest.base="${{ github.base_ref }}" \
-Dsonar.pullrequest.branch="${{ github.head_ref }}" \
-Dsonar.pullrequest.key="${{ github.event.pull_request.number }}" \
-Dsonar.scm.revision="${{ github.event.pull_request.head.sha }}" \
-Dsonar.sources="." \
-Dsonar.cfamily.compile-commands=compile_commands.json \
-Dsonar.exclusions="**/Tests/**" \
-Dsonar.verbose=true