-
Notifications
You must be signed in to change notification settings - Fork 129
/
Makefile
472 lines (404 loc) · 18.2 KB
/
Makefile
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
all: env-check repo-setup templates
.PHONY: env-check repo-setup clean templates \
lint license-check \
test test-ios test-ios-all test-tvos test-tvos-all \
ui-test ui-test-all ui-test-podinstall \
sr-snapshot-test sr-snapshots-pull sr-snapshots-push sr-snapshot-tests-open \
tools-test \
smoke-test smoke-test-ios smoke-test-ios-all smoke-test-tvos smoke-test-tvos-all \
spm-build spm-build-ios spm-build-tvos spm-build-visionos spm-build-macos spm-build-watchos \
e2e-upload \
benchmark-build benchmark-upload \
models-generate rum-models-generate sr-models-generate models-verify rum-models-verify sr-models-verify \
dogfood-shopist dogfood-datadog-app \
release-build release-validate release-publish-github \
release-publish-podspec release-publish-internal-podspecs release-publish-dependent-podspecs release-publish-legacy-podspecs \
set-ci-secret
REPO_ROOT := $(PWD)
include tools/utils/common.mk
define DD_SDK_TESTING_XCCONFIG_CI
DD_TEST_RUNNER=1\n
DD_SDK_SWIFT_TESTING_SERVICE=dd-sdk-ios\n
DD_SDK_SWIFT_TESTING_APIKEY=${DD_SDK_SWIFT_TESTING_APIKEY}\n
DD_SDK_SWIFT_TESTING_ENV=ci\n
DD_SDK_SWIFT_TESTING_APPLICATION_KEY=${DD_SDK_SWIFT_TESTING_APPLICATION_KEY}\n
endef
export DD_SDK_TESTING_XCCONFIG_CI
define DD_SDK_BASE_XCCONFIG
// Active compilation conditions - only enabled on local machine:\n
// - DD_SDK_ENABLE_EXPERIMENTAL_APIS - enables APIs which are not available in released version of the SDK\n
// - DD_SDK_COMPILED_FOR_TESTING - conditions the SDK code compiled for testing\n
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) DD_SDK_ENABLE_EXPERIMENTAL_APIS DD_SDK_COMPILED_FOR_TESTING\n
\n
// To build only active architecture for all configurations. This gives us ~10% build time gain\n
// in targets which do not use 'Debug' configuration.\n
ONLY_ACTIVE_ARCH = YES\n
endef
export DD_SDK_BASE_XCCONFIG
define DD_SDK_BASE_XCCONFIG_CI
// To ensure no build time warnings slip in without being resolved, treat them as CI build errors:\n
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES\n
\n
// If running on CI. This value is injected to some targets through their `Info.plist`:\n
IS_CI = true\n
endef
export DD_SDK_BASE_XCCONFIG_CI
define DD_SDK_DATADOG_XCCONFIG_CI
// Datadog secrets provisioning E2E tests data for 'Mobile - Integration' org:\n
E2E_RUM_APPLICATION_ID=${E2E_RUM_APPLICATION_ID}\n
E2E_DATADOG_CLIENT_TOKEN=${E2E_DATADOG_CLIENT_TOKEN}\n
endef
export DD_SDK_DATADOG_XCCONFIG_CI
# Installs tools and dependencies with homebrew.
# Do not call 'brew update' and instead let Bitrise use its own brew bottle mirror.
dependencies:
@echo "⚙️ Installing dependencies..."
@bundle install
@brew list swiftlint &>/dev/null || brew install swiftlint
@brew upgrade carthage
@carthage bootstrap --platform iOS,tvOS --use-xcframeworks
@echo $$DD_SDK_BASE_XCCONFIG > xcconfigs/Base.local.xcconfig;
@brew list gh &>/dev/null || brew install gh
ifeq (${ci}, true)
@echo $$DD_SDK_BASE_XCCONFIG_CI >> xcconfigs/Base.local.xcconfig;
@echo $$DD_SDK_DATADOG_XCCONFIG_CI > xcconfigs/Datadog.local.xcconfig;
ifndef DD_DISABLE_TEST_INSTRUMENTING
@echo $$DD_SDK_TESTING_XCCONFIG_CI > xcconfigs/DatadogSDKTesting.local.xcconfig;
endif
endif
# Default ENV for setting up the repo
DEFAULT_ENV := dev
env-check:
@$(ECHO_TITLE) "make env-check"
./tools/env-check.sh
repo-setup:
@:$(eval ENV ?= $(DEFAULT_ENV))
@$(ECHO_TITLE) "make repo-setup ENV='$(ENV)'"
./tools/repo-setup/repo-setup.sh --env "$(ENV)"
clean:
@$(ECHO_TITLE) "make clean"
./tools/clean.sh
lint:
@$(ECHO_TITLE) "make lint"
./tools/lint/run-linter.sh
license-check:
@$(ECHO_TITLE) "make license-check"
./tools/license/check-license.sh
# Test env for running iOS tests in local:
DEFAULT_IOS_OS := latest
DEFAULT_IOS_PLATFORM := iOS Simulator
DEFAULT_IOS_DEVICE := iPhone 15 Pro
# Test env for running tvOS tests in local:
DEFAULT_TVOS_OS := latest
DEFAULT_TVOS_PLATFORM := tvOS Simulator
DEFAULT_TVOS_DEVICE := Apple TV
# Test env for running SR snapshot tests in local:
DEFAULT_SR_SNAPSHOT_TESTS_OS := 17.5
DEFAULT_SR_SNAPSHOT_TESTS_PLATFORM := iOS Simulator
DEFAULT_SR_SNAPSHOT_TESTS_DEVICE := iPhone 15
# Default location for deploying artifacts
DEFAULT_ARTIFACTS_PATH := artifacts
# Whether Test Visibility product is enabled by default
DEFAULT_USE_TEST_VISIBILITY := 0
SKIP_OBJC_TYPES ?= TelemetryUsageEvent
# Run unit tests for specified SCHEME
test:
@$(call require_param,SCHEME)
@$(call require_param,OS)
@$(call require_param,PLATFORM)
@$(call require_param,DEVICE)
@:$(eval USE_TEST_VISIBILITY ?= $(DEFAULT_USE_TEST_VISIBILITY))
@$(ECHO_TITLE) "make test SCHEME='$(SCHEME)' OS='$(OS)' PLATFORM='$(PLATFORM)' DEVICE='$(DEVICE)' USE_TEST_VISIBILITY='$(USE_TEST_VISIBILITY)'"
USE_TEST_VISIBILITY=$(USE_TEST_VISIBILITY) ./tools/test.sh --scheme "$(SCHEME)" --os "$(OS)" --platform "$(PLATFORM)" --device "$(DEVICE)"
# Run unit tests for specified SCHEME using iOS Simulator
test-ios:
@$(call require_param,SCHEME)
@:$(eval OS ?= $(DEFAULT_IOS_OS))
@:$(eval PLATFORM ?= $(DEFAULT_IOS_PLATFORM))
@:$(eval DEVICE ?= $(DEFAULT_IOS_DEVICE))
@$(MAKE) test SCHEME="$(SCHEME)" OS="$(OS)" PLATFORM="$(PLATFORM)" DEVICE="$(DEVICE)"
# Run unit tests for all iOS schemes
test-ios-all:
@$(MAKE) test-ios SCHEME="DatadogCore iOS"
@$(MAKE) test-ios SCHEME="DatadogInternal iOS"
@$(MAKE) test-ios SCHEME="DatadogRUM iOS"
@$(MAKE) test-ios SCHEME="DatadogSessionReplay iOS"
@$(MAKE) test-ios SCHEME="DatadogLogs iOS"
@$(MAKE) test-ios SCHEME="DatadogTrace iOS"
@$(MAKE) test-ios SCHEME="DatadogCrashReporting iOS"
@$(MAKE) test-ios SCHEME="DatadogWebViewTracking iOS"
# Run unit tests for specified SCHEME using tvOS Simulator
test-tvos:
@$(call require_param,SCHEME)
@:$(eval OS ?= $(DEFAULT_TVOS_OS))
@:$(eval PLATFORM ?= $(DEFAULT_TVOS_PLATFORM))
@:$(eval DEVICE ?= $(DEFAULT_TVOS_DEVICE))
@$(MAKE) test SCHEME="$(SCHEME)" OS="$(OS)" PLATFORM="$(PLATFORM)" DEVICE="$(DEVICE)"
# Run unit tests for all tvOS schemes
test-tvos-all:
@$(MAKE) test-tvos SCHEME="DatadogCore tvOS"
@$(MAKE) test-tvos SCHEME="DatadogInternal tvOS"
@$(MAKE) test-tvos SCHEME="DatadogRUM tvOS"
@$(MAKE) test-tvos SCHEME="DatadogLogs tvOS"
@$(MAKE) test-tvos SCHEME="DatadogTrace tvOS"
@$(MAKE) test-tvos SCHEME="DatadogCrashReporting tvOS"
# Run UI tests for specified TEST_PLAN
ui-test:
@$(call require_param,TEST_PLAN)
@:$(eval OS ?= $(DEFAULT_IOS_OS))
@:$(eval PLATFORM ?= $(DEFAULT_IOS_PLATFORM))
@:$(eval DEVICE ?= $(DEFAULT_IOS_DEVICE))
@$(ECHO_TITLE) "make ui-test TEST_PLAN='$(TEST_PLAN)' OS='$(OS)' PLATFORM='$(PLATFORM)' DEVICE='$(DEVICE)'"
./tools/ui-test.sh --test-plan "$(TEST_PLAN)" --os "$(OS)" --platform "$(PLATFORM)" --device "$(DEVICE)"
# Run UI tests for all test plans
ui-test-all:
@$(MAKE) ui-test TEST_PLAN="Default"
@$(MAKE) ui-test TEST_PLAN="RUM"
@$(MAKE) ui-test TEST_PLAN="CrashReporting"
@$(MAKE) ui-test TEST_PLAN="NetworkInstrumentation"
# Update UI test project with latest SDK
ui-test-podinstall:
@$(ECHO_TITLE) "make ui-test-podinstall"
cd IntegrationTests/ && bundle exec pod install
# Run tests for repo tools
tools-test:
@$(ECHO_TITLE) "make tools-test"
./tools/tools-test.sh
# Run smoke tests
smoke-test:
@$(call require_param,TEST_DIRECTORY)
@$(call require_param,OS)
@$(call require_param,PLATFORM)
@$(call require_param,DEVICE)
@$(ECHO_TITLE) "make smoke-test TEST_DIRECTORY='$(TEST_DIRECTORY)' OS='$(OS)' PLATFORM='$(PLATFORM)' DEVICE='$(DEVICE)'"
./tools/smoke-test.sh --test-directory "$(TEST_DIRECTORY)" --os "$(OS)" --platform "$(PLATFORM)" --device "$(DEVICE)"
# Run smoke tests for specified TEST_DIRECTORY using iOS Simulator
smoke-test-ios:
@$(call require_param,TEST_DIRECTORY)
@:$(eval OS ?= $(DEFAULT_IOS_OS))
@:$(eval PLATFORM ?= $(DEFAULT_IOS_PLATFORM))
@:$(eval DEVICE ?= $(DEFAULT_IOS_DEVICE))
@$(MAKE) smoke-test TEST_DIRECTORY="$(TEST_DIRECTORY)" OS="$(OS)" PLATFORM="$(PLATFORM)" DEVICE="$(DEVICE)"
# Run all smoke tests using iOS Simulator
smoke-test-ios-all:
@$(MAKE) smoke-test-ios TEST_DIRECTORY="SmokeTests/spm"
@$(MAKE) smoke-test-ios TEST_DIRECTORY="SmokeTests/carthage"
@$(MAKE) smoke-test-ios TEST_DIRECTORY="SmokeTests/cocoapods"
@$(MAKE) smoke-test-ios TEST_DIRECTORY="SmokeTests/xcframeworks"
# Run smoke tests for specified TEST_DIRECTORY using tvOS Simulator
smoke-test-tvos:
@$(call require_param,TEST_DIRECTORY)
@:$(eval OS ?= $(DEFAULT_TVOS_OS))
@:$(eval PLATFORM ?= $(DEFAULT_TVOS_PLATFORM))
@:$(eval DEVICE ?= $(DEFAULT_TVOS_DEVICE))
@$(MAKE) smoke-test TEST_DIRECTORY="$(TEST_DIRECTORY)" OS="$(OS)" PLATFORM="$(PLATFORM)" DEVICE="$(DEVICE)"
# Run all smoke tests using tvOS Simulator
smoke-test-tvos-all:
@$(MAKE) smoke-test-tvos TEST_DIRECTORY="SmokeTests/spm"
@$(MAKE) smoke-test-tvos TEST_DIRECTORY="SmokeTests/carthage"
@$(MAKE) smoke-test-tvos TEST_DIRECTORY="SmokeTests/cocoapods"
@$(MAKE) smoke-test-tvos TEST_DIRECTORY="SmokeTests/xcframeworks"
# Builds SPM package SCHEME for specified DESTINATION
spm-build:
@$(call require_param,SCHEME)
@$(call require_param,DESTINATION)
@$(ECHO_TITLE) "make spm-build SCHEME='$(SCHEME)' DESTINATION='$(DESTINATION)'"
./tools/spm-build.sh --scheme "$(SCHEME)" --destination "$(DESTINATION)"
# Builds SPM package for iOS
spm-build-ios:
@$(MAKE) spm-build SCHEME="Datadog-Package" DESTINATION="generic/platform=ios"
# Builds SPM package for tvOS
spm-build-tvos:
@$(MAKE) spm-build SCHEME="Datadog-Package" DESTINATION="generic/platform=tvOS"
# Builds SPM package for visionOS
spm-build-visionos:
@$(MAKE) spm-build SCHEME="Datadog-Package" DESTINATION="generic/platform=visionOS"
# Builds SPM package for watchOS
spm-build-watchos:
# Build only compatible schemes for watchOS:
@$(MAKE) spm-build DESTINATION="generic/platform=watchOS" SCHEME="DatadogCore"
@$(MAKE) spm-build DESTINATION="generic/platform=watchOS" SCHEME="DatadogLogs"
@$(MAKE) spm-build DESTINATION="generic/platform=watchOS" SCHEME="DatadogTrace"
# Builds SPM package for macOS (and Mac Catalyst)
spm-build-macos:
# Whole package for Mac Catalyst:
@$(MAKE) spm-build SCHEME="Datadog-Package" DESTINATION="platform=macOS,variant=Mac Catalyst"
# Only compatible schemes for macOS:
@$(MAKE) spm-build DESTINATION="platform=macOS" SCHEME="DatadogCore"
@$(MAKE) spm-build DESTINATION="platform=macOS" SCHEME="DatadogLogs"
@$(MAKE) spm-build DESTINATION="platform=macOS" SCHEME="DatadogTrace"
@$(MAKE) spm-build DESTINATION="platform=macOS" SCHEME="DatadogCrashReporting"
# Builds a new version of the E2E app and publishes it to synthetics.
e2e-upload:
@$(call require_param,ARTIFACTS_PATH)
@:$(eval DRY_RUN ?= 1)
@$(ECHO_TITLE) "make e2e-upload ARTIFACTS_PATH='$(ARTIFACTS_PATH)' DRY_RUN='$(DRY_RUN)'"
DRY_RUN=$(DRY_RUN) ./tools/e2e-build-upload.sh --artifacts-path "$(ARTIFACTS_PATH)"
# Builds the Benchmark app.
benchmark-build:
@$(ECHO_TITLE) "make benchmark-build"
@$(MAKE) -C BenchmarkTests build
# Builds a new version of the Benchmark app and publishes it to synthetics.
benchmark-upload:
@$(call require_param,ARTIFACTS_PATH)
@:$(eval DRY_RUN ?= 1)
@$(ECHO_TITLE) "make benchmark-upload ARTIFACTS_PATH='$(ARTIFACTS_PATH)' DRY_RUN='$(DRY_RUN)'"
DRY_RUN=$(DRY_RUN) ./tools/benchmark-build-upload.sh --artifacts-path "$(ARTIFACTS_PATH)"
# Opens `BenchmarkTests` project with passing required ENV variables
benchmark-tests-open:
@$(ECHO_TITLE) "make benchmark-tests-open"
@$(MAKE) -C BenchmarkTests open
xcodeproj-session-replay:
@echo "⚙️ Generating 'DatadogSessionReplay.xcodeproj'..."
@cd DatadogSessionReplay/ && swift package generate-xcodeproj
@echo "OK 👌"
templates:
@$(ECHO_TITLE) "make templates"
./tools/xcode-templates/install-xcode-templates.sh
# Generate data models from https://github.com/DataDog/rum-events-format
models-generate:
@$(call require_param,PRODUCT) # 'rum' or 'sr'
@$(call require_param,GIT_REF)
@$(ECHO_TITLE) "make models-generate PRODUCT='$(PRODUCT)' GIT_REF='$(GIT_REF)'"
./tools/rum-models-generator/run.py generate $(PRODUCT) --git_ref=$(GIT_REF) --skip_objc $(SKIP_OBJC_TYPES)
# Validate data models against https://github.com/DataDog/rum-events-format
models-verify:
@$(call require_param,PRODUCT) # 'rum' or 'sr'
@$(ECHO_TITLE) "make models-verify PRODUCT='$(PRODUCT)'"
./tools/rum-models-generator/run.py verify $(PRODUCT) --skip_objc $(SKIP_OBJC_TYPES)
# Generate RUM data models
rum-models-generate:
@:$(eval GIT_REF ?= master)
@$(MAKE) models-generate PRODUCT="rum" GIT_REF="$(GIT_REF)"
# Validate RUM data models
rum-models-verify:
@$(MAKE) models-verify PRODUCT="rum"
# Generate SR data models
sr-models-generate:
@:$(eval GIT_REF ?= master)
@$(MAKE) models-generate PRODUCT="sr" GIT_REF="$(GIT_REF)"
# Validate SR data models
sr-models-verify:
@$(MAKE) models-verify PRODUCT="sr"
# Pushes current SR snapshots to snapshots repo
sr-snapshots-push:
@$(ECHO_TITLE) "make sr-snapshots-push"
./tools/sr-snapshot-test.sh --push
# Pulls SR snapshots from snapshots repo
sr-snapshots-pull:
@$(ECHO_TITLE) "make sr-snapshots-pull"
./tools/sr-snapshot-test.sh --pull
# Run Session Replay snapshot tests
sr-snapshot-test:
@:$(eval OS ?= $(DEFAULT_SR_SNAPSHOT_TESTS_OS))
@:$(eval PLATFORM ?= $(DEFAULT_SR_SNAPSHOT_TESTS_PLATFORM))
@:$(eval DEVICE ?= $(DEFAULT_SR_SNAPSHOT_TESTS_DEVICE))
@:$(eval ARTIFACTS_PATH ?= $(DEFAULT_ARTIFACTS_PATH))
@$(ECHO_TITLE) "make sr-snapshot-test OS='$(OS)' PLATFORM='$(PLATFORM)' DEVICE='$(DEVICE)' ARTIFACTS_PATH='$(ARTIFACTS_PATH)'"
./tools/sr-snapshot-test.sh \
--test --os "$(OS)" --device "$(DEVICE)" --platform "$(PLATFORM)" --artifacts-path "$(ARTIFACTS_PATH)"
# Opens `SRSnapshotTests` project with passing required ENV variables
sr-snapshot-tests-open:
@$(ECHO_TITLE) "make sr-snapshot-tests-open"
./tools/sr-snapshot-test.sh --open-project
# Generate api-surface files for Datadog and DatadogObjc.
api-surface:
@echo "Generating api-surface-swift"
@cd tools/api-surface && \
swift run api-surface spm \
--path ../../ \
--library-name DatadogCore \
--library-name DatadogLogs \
--library-name DatadogTrace \
--library-name DatadogRUM \
--library-name DatadogCrashReporting \
--library-name DatadogWebViewTracking \
--library-name DatadogSessionReplay \
> ../../api-surface-swift && \
cd -
@echo "Generating api-surface-objc"
@cd tools/api-surface && \
swift run api-surface spm \
--path ../../ \
--library-name DatadogObjc \
> ../../api-surface-objc && \
cd -
# Generate Datadog monitors terraform definition for E2E tests:
e2e-monitors-generate:
@echo "Deleting previous 'main.tf as it will be soon generated."
@rm -f tools/nightly-e2e-tests/monitors-gen/main.tf
@echo "Deleting previous Terraform state and backup as we don't need to track it."
@rm -f tools/nightly-e2e-tests/monitors-gen/terraform.tfstate
@rm -f tools/nightly-e2e-tests/monitors-gen/terraform.tfstate.backup
@echo "⚙️ Generating 'main.tf':"
@./tools/nightly-e2e-tests/nightly_e2e.py generate-tf --tests-dir ../../Datadog/E2ETests
@echo "⚠️ Remember to delete all iOS monitors manually from Mobile-Integration org before running 'terraform apply'."
# Creates dogfooding PR in shopist-ios
dogfood-shopist:
@:$(eval DRY_RUN ?= 1)
@$(ECHO_TITLE) "make dogfood-shopist DRY_RUN='$(DRY_RUN)'"
DRY_RUN=$(DRY_RUN) ./tools/dogfooding/dogfood.sh --shopist
# Creates dogfooding PR in datadog-ios
dogfood-datadog-app:
@:$(eval DRY_RUN ?= 1)
@$(ECHO_TITLE) "make dogfood-datadog-app DRY_RUN='$(DRY_RUN)'"
DRY_RUN=$(DRY_RUN) ./tools/dogfooding/dogfood.sh --datadog-app
# Builds release artifacts for given tag
release-build:
@$(call require_param,GIT_TAG)
@$(call require_param,ARTIFACTS_PATH)
@$(ECHO_TITLE) "make release-build GIT_TAG='$(GIT_TAG)' ARTIFACTS_PATH='$(ARTIFACTS_PATH)'"
./tools/release/build.sh --tag "$(GIT_TAG)" --artifacts-path "$(ARTIFACTS_PATH)"
# Validate release artifacts for given tag
release-validate:
@$(call require_param,GIT_TAG)
@$(call require_param,ARTIFACTS_PATH)
@$(ECHO_TITLE) "make release-validate GIT_TAG='$(GIT_TAG)' ARTIFACTS_PATH='$(ARTIFACTS_PATH)'"
./tools/release/validate-version.sh --artifacts-path "$(ARTIFACTS_PATH)" --tag "$(GIT_TAG)"
./tools/release/validate-xcframeworks.sh --artifacts-path "$(ARTIFACTS_PATH)"
# Publish GitHub asset to GH release
release-publish-github:
@$(call require_param,GIT_TAG)
@$(call require_param,ARTIFACTS_PATH)
@:$(eval DRY_RUN ?= 1)
@:$(eval OVERWRITE_EXISTING ?= 0)
@$(ECHO_TITLE) "make release-publish-github GIT_TAG='$(GIT_TAG)' ARTIFACTS_PATH='$(ARTIFACTS_PATH)' DRY_RUN='$(DRY_RUN)' OVERWRITE_EXISTING='$(OVERWRITE_EXISTING)'"
DRY_RUN=$(DRY_RUN) OVERWRITE_EXISTING=$(OVERWRITE_EXISTING) ./tools/release/publish-github.sh \
--artifacts-path "$(ARTIFACTS_PATH)" \
--tag "$(GIT_TAG)"
# Publish Cocoapods podspec to trunk
release-publish-podspec:
@$(call require_param,PODSPEC_NAME)
@$(call require_param,ARTIFACTS_PATH)
@:$(eval DRY_RUN ?= 1)
@$(ECHO_TITLE) "make release-publish-podspec PODSPEC_NAME='$(PODSPEC_NAME)' ARTIFACTS_PATH='$(ARTIFACTS_PATH)' DRY_RUN='$(DRY_RUN)'"
DRY_RUN=$(DRY_RUN) ./tools/release/publish-podspec.sh \
--artifacts-path "$(ARTIFACTS_PATH)" \
--podspec-name "$(PODSPEC_NAME)"
# Publish DatadogInternal podspec
release-publish-internal-podspecs:
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogInternal.podspec"
# Publish podspecs that depend on DatadogInternal
release-publish-dependent-podspecs:
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogCore.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogLogs.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogTrace.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogRUM.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogSessionReplay.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogCrashReporting.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogWebViewTracking.podspec"
# Publish legacy podspecs
release-publish-legacy-podspecs:
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogObjc.podspec"
@$(MAKE) release-publish-podspec PODSPEC_NAME="DatadogAlamofireExtension.podspec"
# Set ot update CI secrets
set-ci-secret:
@$(ECHO_TITLE) "make set-ci-secret"
@./tools/secrets/set-secret.sh
bump:
@read -p "Enter version number: " version; \
echo "// GENERATED FILE: Do not edit directly\n\ninternal let __sdkVersion = \"$$version\"" > DatadogCore/Sources/Versioning.swift; \
./tools/podspec_bump_version.sh $$version; \
git add . ; \
git commit -m "Bumped version to $$version"; \
echo Bumped version to $$version