-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RUMM-346 Add Cocoapods dependency manager test
and disable CP example project on CI as we're going to update it's structure very soon in RUMM-334.
- Loading branch information
Showing
20 changed files
with
943 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,10 @@ workflows: | |
- run_integration_tests | ||
- run_benchmarks | ||
- check_dependency_managers | ||
- check_example_projects | ||
# I disable it for now, as this would require supporting local pod installation | ||
# of `DatadogSDK.podspec` in CP example project. This effort will be lost as in `RUMM-334` | ||
# we're going to re-do sample apps layout and not use local pod anymore. | ||
# - check_example_projects | ||
- _deploy_artifacts | ||
|
||
_make_dependencies: | ||
|
@@ -140,13 +143,37 @@ workflows: | |
#!/usr/bin/env bash | ||
set -e | ||
make test-spm ci=true | ||
- xcode-test: | ||
title: Run SPMProject UITests | ||
inputs: | ||
- scheme: SPMProject | ||
- is_clean_build: 'yes' | ||
- cache_level: none | ||
- project_path: "$BITRISE_SOURCE_DIR/dependency-manager-tests/spm/SPMProject.xcodeproj" | ||
- xcpretty_test_options: --color --report html --output "${BITRISE_DEPLOY_DIR}/SPMProject-ui-tests.html" | ||
- [email protected]: | ||
title: Test Carthage compatibility | ||
inputs: | ||
- content: |- | ||
#!/usr/bin/env bash | ||
set -e | ||
make test-carthage ci=true | ||
# TODO: RUMM-334 add UITests for Carthage project | ||
- [email protected]: | ||
title: Test Cocoapods compatibility | ||
inputs: | ||
- content: |- | ||
#!/usr/bin/env bash | ||
set -e | ||
make test-cocoapods ci=true | ||
- xcode-test: | ||
title: Run CPProject UITests | ||
inputs: | ||
- scheme: CPProject | ||
- is_clean_build: 'yes' | ||
- cache_level: none | ||
- project_path: "$BITRISE_SOURCE_DIR/dependency-manager-tests/cocoapods/CPProject.xcworkspace" | ||
- xcpretty_test_options: --color --report html --output "${BITRISE_DEPLOY_DIR}/CPProject-ui-tests.html" | ||
|
||
check_example_projects: | ||
description: |- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.DS_Store | ||
/Pods | ||
|
||
# Ignore `Podfile.lock` and `Podfile` as they will be re-created for every test run. | ||
Podfile.lock | ||
Podfile |
Oops, something went wrong.