-
Notifications
You must be signed in to change notification settings - Fork 0
133 lines (113 loc) · 3.58 KB
/
test.yaml
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
PROJECT: 'SwiftRadio.xcodeproj'
SCHEME: 'SwiftRadioUITests'
DERIVED_DATA_PATH: 'DerivedData'
TEST_RESULTS: './TestResults.xcresult'
jobs:
build:
name: build
runs-on: [macos-15]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: build project
id: build
run: |
set -o pipefail
xcodebuild build-for-testing \
-project ${{ env.PROJECT }} \
-scheme ${{ env.SCHEME }} \
-derivedDataPath ${{ env.DERIVED_DATA_PATH }} \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.0' \
CODE_SIGNING_ALLOWED='NO'
mkdir TestData
patterns=("*.xctest" "*.app" "*.xctestrun" "*.framework" "*.bundle")
for pattern in "${patterns[@]}"; do find "${{ env.DERIVED_DATA_PATH }}" -name "$pattern" -print | pax -rw -pe "TestData"; done
echo "artifacts_path=TestData/${{ env.DERIVED_DATA_PATH }}" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v4
with:
path: ${{ steps.build.outputs.artifacts_path }}
name: TestData
retention-days: 30
test:
name: Test
runs-on: [macos-15]
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: TestData
path: ${{ env.DERIVED_DATA_PATH }}
- name: Download Allure Parser of XCResults
run: |
curl -OL https://github.com/eroshenkoam/xcresults/releases/download/1.19.0/xcresults
chmod +x xcresults
- name: Install Allure
run: brew install allure
- name: Run Ui Tests
run: |
xcodebuild test-without-building \
-xctestrun DerivedData/Build/Products/SwiftRadioUITests_Regression_iphonesimulator18.0-arm64.xctestrun \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.0' \
-test-timeouts-enabled YES \
-maximum-test-execution-time-allowance 60 \
-resultBundlePath ./TestResults.xcresult
continue-on-error: true
- name: Generate Allure files
run: |
mkdir allure-results
./xcresults export TestResults.xcresult -o allure-results
mkdir allure-report
allure generate allure-results --report-dir allure-report
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: allure-results
path: |
allure-results/
retention-days: 1
report:
runs-on: [ubuntu-latest]
name: Report to Allure
needs: test
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: allure-results
path: allure-results
- name: Display structure of downloaded files
run: |
ls -R
pwd
- name: Load test report history
uses: actions/checkout@v3
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Build test report
uses: simple-elf/[email protected]
if: always()
with:
gh_pages: gh-pages
allure_history: allure-history
allure_results: ./allure-results
- name: Publish test report
uses: peaceiris/actions-gh-pages@v3
if: always()
with:
github_token: ${{ secrets.TOKEN }}
publish_branch: gh-pages
publish_dir: allure-history