-
-
Notifications
You must be signed in to change notification settings - Fork 80
228 lines (222 loc) · 8.38 KB
/
build.yml
File metadata and controls
228 lines (222 loc) · 8.38 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
name: 'Build & Test'
on:
push:
branches:
- master
- release/**
pull_request:
# Cancel in-progress runs when a new run is triggered (e.g. by a new commit)
# Only apply to PRs to ensure all commits are tested on main branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
job_build:
name: Build
runs-on: ubuntu-latest
env:
APPLE_CERT_PATH: /tmp/certs.p12
APPLE_API_KEY_PATH: /tmp/apple_key.json
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Apply xcode library patch
run: patch -p1 -i patches/xcode+3.0.1.patch
- name: Build
run: yarn build
- name: Setup Apple Code Signing
env:
APPLE_CERT_DATA: ${{ secrets.APPLE_CERT_DATA }}
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
run: |
curl -L 'https://github.com/indygreg/apple-platform-rs/releases/download/apple-codesign%2F0.28.0/apple-codesign-0.28.0-x86_64-unknown-linux-musl.tar.gz' | tar -xz --strip-components=1
mv rcodesign /usr/local/bin/rcodesign
echo "$APPLE_CERT_DATA" | base64 --decode > ${{ env.APPLE_CERT_PATH }}
echo "$APPLE_API_KEY" | base64 --decode > ${{ env.APPLE_API_KEY_PATH }}
- name: Fossilize Cache
uses: actions/cache@v4
with:
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: yarn-
path: |
${{ github.workspace }}/.node-cache
- name: Build SEA Binaries
env:
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }}
run:
yarn fossilize -n 22${{ github.event_name == 'push' &&
(github.ref_name == 'master' || startsWith(github.ref_name,
'release/')) && ' --sign' || '' }} -p linux-x64 -p linux-arm64 -p
win-x64 -p darwin-x64 -p darwin-arm64
- name: Pack
run: yarn pack
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
if-no-files-found: error
compression-level: 3
path: |
${{ github.workspace }}/*.tgz
${{ github.workspace }}/dist-bin/*
job_lint:
name: Lint
needs: job_build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Run Linter
run: yarn lint
job_unit_test:
name: Node (${{ matrix.node }}) Unit Tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
os:
- ubuntu-latest
- macos-15 # We need to use macos-15 to test with Xcode 16
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- # This debug step is left-in on purpose, as it helps debug test failures of
# Apple-specific functionality that relies on system paths.
#
# The tests could fail when GitHub updates the macOS runner image.
# This step prints the Xcode environment details to quickly resolve failing tests,
# by comparing expected paths in our tests with actual paths in the CI environment.
name: Print Xcode environment
if: startsWith(matrix.os, 'macos-')
run: |
echo "Xcode Path: $(xcode-select --print-path)"
echo "SDK Path: $(xcrun --show-sdk-path)"
echo "SDK Version: $(xcrun --show-sdk-version)"
echo "SDK Build Version: $(xcrun --show-sdk-build-version)"
echo "SDK Platform Path: $(xcrun --show-sdk-platform-path)"
echo "SDK Platform Version: $(xcrun --show-sdk-platform-version)"
- name: Run Unit Tests
run: yarn test
- name: Push code coverage to codecov
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # pin@v5.3.1
with:
# Need to specify the token here, as the codecov action requires it for protected branches.
# If not set, this error is shown: `Token required because branch is protected`
token: ${{ secrets.CODECOV_TOKEN }}
# Do not fail the build if codecov fails to report the coverage.
fail_ci_if_error: false
flags: unit-tests
job_e2e_test:
name: ${{ matrix.wizard }} E2E Tests (${{ matrix.os }})
needs: job_build
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
wizard:
- Expo
- Flutter
- Nuxt-3
- Nuxt-4
- NextJS-14
- NextJS-15
- Remix
- React-Native
- Sveltekit-Hooks
- Sveltekit-Tracing
- Help
- Cloudflare-Wrangler-Sourcemaps
os:
- ubuntu-latest
# We need to use macos-15 to test with Xcode 16
- macos-15
env:
SENTRY_TEST_AUTH_TOKEN: ${{ secrets.E2E_TEST_SENTRY_AUTH_TOKEN }}
SENTRY_TEST_ORG: 'sentry-javascript-sdks'
SENTRY_TEST_PROJECT: 'sentry-wizard-e2e-tests'
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
- name: Setup Flutter
if: matrix.wizard == 'Flutter'
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff # pin@v2.18.0
with:
channel: 'stable'
- name: Build Flutter
if: matrix.wizard == 'Flutter'
working-directory: e2e-tests/test-applications/flutter-test-app
run: |
flutter upgrade
flutter pub get
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Download built binaries from build job
uses: actions/download-artifact@v4
with:
name: ${{ github.sha }}
- # This debug step is left-in on purpose, as it helps debug test failures of
# Apple-specific functionality that relies on system paths.
#
# The tests could fail when GitHub updates the macOS runner image.
# This step prints the Xcode environment details to quickly resolve failing tests,
# by comparing expected paths in our tests with actual paths in the CI environment.
name: Print Xcode environment
if: startsWith(matrix.os, 'macos-')
run: |
echo "Xcode Path: $(xcode-select --print-path)"
echo "SDK Path: $(xcrun --show-sdk-path)"
echo "SDK Version: $(xcrun --show-sdk-version)"
echo "SDK Build Version: $(xcrun --show-sdk-build-version)"
echo "SDK Platform Path: $(xcrun --show-sdk-platform-path)"
echo "SDK Platform Version: $(xcrun --show-sdk-platform-version)"
- name: Run End-to-End Tests
run: yarn test:e2e:bin ${{ matrix.wizard }}
- name: Push code coverage to codecov
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # pin@v5.3.1
with:
# Need to specify the token here, as the codecov action requires it for protected branches.
# If not set, this error is shown: `Token required because branch is protected`
token: ${{ secrets.CODECOV_TOKEN }}
# Do not fail the build if codecov fails to report the coverage.
fail_ci_if_error: false
flags: e2e-tests
job_required_jobs_passed:
name: All required jobs passed or were skipped
needs:
- job_build
- job_unit_test
- job_e2e_test
- job_lint
# Always run this, even if a dependent job failed
if: always()
runs-on: ubuntu-24.04
steps:
- name: Check for failures
if: contains(needs.*.result, 'failure')
run: |
echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1