-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ stages: | |
stage_1: | ||
workflows: | ||
#- configure_build_fennec: {} | ||
- Test_App_Diff_Check: {} | ||
- Determine_Apps_Affected: {} | ||
stage_2: | ||
workflows: | ||
- build_and_test_1_SmokeTest2: {} | ||
|
@@ -1583,7 +1583,7 @@ workflows: | |
sed 's/.*=//;s/'\''/"/g' data.txt > test.json | ||
cat test.json | ||
python3 perfTestTransform.py | ||
Test_App_Diff_Check: | ||
Determine_Apps_Affected: | ||
steps: | ||
- [email protected]: {} | ||
- script@1: | ||
|
@@ -1606,16 +1606,22 @@ workflows: | |
envman add --key BUILD_SAMPLE_BROWSER_IOS --value "true" | ||
fi | ||
# Mono-repo root changes (e.g, package.json, bitrise.yml, etc.) | ||
# If there are changes in the root of the mono-repo, then we need to build all apps (?) | ||
if [[ "$APPS_AFFECTED" == *"."* ]]; then | ||
# Set all apps to true? | ||
fi | ||
echo $APPS_AFFECTED | ||
- share-pipeline-variable@1: | ||
title: Share which application(s) to base configuration off of | ||
inputs: | ||
- variables: |- | ||
BUILD_FIREFOX_IOS | ||
BUILD_FOCUS_IOS | ||
BUILD_SAMPLE_BROWSER_IOS | ||
- script@1: | ||
title: Show which configuration is set to true | ||
title: Echo build keys | ||
inputs: | ||
- content: |- | ||
#!/usr/bin/env bash | ||
|