-
Notifications
You must be signed in to change notification settings - Fork 17
91 lines (75 loc) · 3.14 KB
/
masterCI.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
87
88
89
90
91
name: CI Build with Unit Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: macos-latest
env:
BUILD_WRAPPER_OUT_DIR: DerivedData/compilation-database
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create build-wrapper dir
run: mkdir -p ${{ env.BUILD_WRAPPER_OUT_DIR }}
- name: Build RollbarCommon
working-directory: RollbarCommon
run: swift build -v
- name: Build RollbarDeploys
working-directory: RollbarDeploys
run: swift build -v
- name: Build RollbarNotifier
working-directory: RollbarNotifier
run: swift build -v
- name: Build RollbarAUL
working-directory: RollbarAUL
run: swift build -v
- name: Install sonar-scanner and build-wrapper
uses: SonarSource/sonarcloud-github-c-cpp@v2
with:
cache-binaries: false
- name: Run build-wrapper RollbarCommon
run: |
build-wrapper-macosx-x86 \
--out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} \
xcodebuild \
-workspace RollbarSDK.xcworkspace \
-scheme RollbarCommon \
-derivedDataPath DerivedData \
build
- name: Test RollbarCommon
run: |
xcodebuild \
test \
-workspace RollbarSDK.xcworkspace \
-scheme RollbarCommon \
-derivedDataPath DerivedData
-enableCodeCoverage YES
CODE_SIGN_IDENTITY="-"
CODE_SIGNING_REQUIRED=NO
- name: SonarCloud RollbarDeploys
run: |
build-wrapper-macosx-x86 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} xcodebuild -workspace RollbarSDK.xcworkspace -scheme RollbarDeploys -derivedDataPath DerivedData -enableCodeCoverage YES build test CODE_SIGN_IDENTITY="-" CODE_SIGNING_REQUIRED=NO
- name: SonarCloud RollbarNotifier
run: |
build-wrapper-macosx-x86 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} xcodebuild -workspace RollbarSDK.xcworkspace -scheme RollbarNotifier -derivedDataPath DerivedData -enableCodeCoverage YES build test CODE_SIGN_IDENTITY="-" CODE_SIGNING_REQUIRED=NO
- name: SonarCloud RollbarAUL
run: |
build-wrapper-macosx-x86 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} xcodebuild -workspace RollbarSDK.xcworkspace -scheme RollbarAUL -derivedDataPath DerivedData -enableCodeCoverage YES build test CODE_SIGN_IDENTITY="-" CODE_SIGNING_REQUIRED=NO
- name: Collect coverage into one XML report
run: |
bash xccov-to-generic.sh DerivedData/Logs/Test/*.xcresult/ > generic-coverage.xml
- name: Run SonarScanner Analysis
run: |
sonar-scanner \
-X \
-Dsonar.cfamily.build-wrapper-output=${{ env.BUILD_WRAPPER_OUT_DIR }} \
-Dsonar.organization=${{ secrets.SONAR_ORGANIZATION_KEY }} \
-Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }} \
-Dsonar.coverageReportPaths=generic-coverage.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}