File tree 7 files changed +13
-12
lines changed
firefox-ios/Client/Configuration
7 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -92,11 +92,12 @@ workflows:
92
92
filters :
93
93
branches :
94
94
only :
95
- - /^.*main.*/
96
- name : Deploy release version over Testflight if MARKETING_VERION file updated
95
+ - main
96
+ - /^main-\d+$/
97
+ name : Deploy release version over Testflight if MARKETING_VERSION file updated
97
98
config-path : .circleci/deploy-release.yml
98
99
mapping : |
99
- Client/Configuration/Common.xcconfig deploy-release true
100
+ firefox-ios/ Client/Configuration/Common.xcconfig deploy-release true
100
101
- build-and-deploy-testflight-beta :
101
102
name : Deploy beta version over Testflight
102
103
filters :
@@ -109,5 +110,5 @@ workflows:
109
110
filters :
110
111
branches :
111
112
only :
112
- - /^.*mob-3113-firefox-upgrade-133 .*/
113
+ - /^.*main .*/
113
114
context : napps
Original file line number Diff line number Diff line change 34
34
command : for ip in $(dig @8.8.8.8 github.com +short); do ssh-keyscan github.com,$ip; ssh-keyscan $ip; done 2>/dev/null >> ~/.ssh/known_hosts
35
35
- run :
36
36
name : extract Production XCConfig
37
- command : echo "$PRODUCTION_XCCONFIG" | base64 --decode > Client/Configuration/Production.xcconfig
37
+ command : echo "$PRODUCTION_XCCONFIG" | base64 --decode > firefox-ios/ Client/Configuration/Production.xcconfig
38
38
- run :
39
39
name : Execute bootstrap
40
40
command : ./bootstrap.sh
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Merge Unit Tests
2
2
3
3
on :
4
4
pull_request :
5
- branches : [ main, mob-3113-firefox-upgrade-133 ]
5
+ branches : [main]
6
6
7
7
jobs :
8
8
execute_merge_tests :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Snapshot Tests
3
3
on :
4
4
pull_request :
5
5
paths :
6
- - ' Client/Configuration/Common.xcconfig'
6
+ - ' firefox-ios/ Client/Configuration/Common.xcconfig'
7
7
8
8
jobs :
9
9
execute_snapshot_tests :
Original file line number Diff line number Diff line change 1
1
name : SwiftLint
2
2
on :
3
3
pull_request :
4
- branches : [ main, mob-3113-firefox-upgrade-133 ]
4
+ branches : [main]
5
5
jobs :
6
6
build :
7
7
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11
11
#! /bin/bash
12
12
13
13
# Get the current branch's MARKETING_VERSION
14
- CURRENT_VERSION=$( grep ' MARKETING_VERSION' Client/Configuration/Common.xcconfig | cut -d ' ' -f3)
14
+ CURRENT_VERSION=$( grep ' MARKETING_VERSION' firefox-ios/ Client/Configuration/Common.xcconfig | cut -d ' ' -f3)
15
15
16
16
if [ -n " $CIRCLECI " ]; then
17
17
# CircleCI: Compare against the previous commit on the same branch
18
18
echo " Running on CircleCI, checking against $CIRCLE_BRANCH ~1"
19
19
20
20
# Check if there is a previous commit available
21
21
if git rev-parse " $CIRCLE_BRANCH ~1" > /dev/null 2>&1 ; then
22
- OLD_VERSION=$( git show " $CIRCLE_BRANCH ~1:Client/Configuration/Common.xcconfig" | grep ' MARKETING_VERSION' | cut -d ' ' -f3)
22
+ OLD_VERSION=$( git show " $CIRCLE_BRANCH ~1:firefox-ios/ Client/Configuration/Common.xcconfig" | grep ' MARKETING_VERSION' | cut -d ' ' -f3)
23
23
else
24
24
echo " No previous commit found on $CIRCLE_BRANCH . Assuming the current version."
25
25
OLD_VERSION=$CURRENT_VERSION
@@ -33,7 +33,7 @@ elif [ -n "$GITHUB_ACTIONS" ]; then
33
33
git fetch origin main || { echo " Failed to fetch main branch" ; exit 1; }
34
34
35
35
# Get the MARKETING_VERSION from the main branch
36
- OLD_VERSION=$( git show origin/main:Client/Configuration/Common.xcconfig | grep ' MARKETING_VERSION' | cut -d ' ' -f3)
36
+ OLD_VERSION=$( git show origin/main:firefox-ios/ Client/Configuration/Common.xcconfig | grep ' MARKETING_VERSION' | cut -d ' ' -f3)
37
37
if [ $? -ne 0 ]; then
38
38
echo " Failed to retrieve MARKETING_VERSION from main branch"
39
39
exit 1
Original file line number Diff line number Diff line change @@ -35,4 +35,4 @@ DYLIB_COMPATIBILITY_VERSION = 1;
35
35
DYLIB_CURRENT_VERSION = 1;
36
36
DYLIB_INSTALL_NAME_BASE = @rpath
37
37
PRODUCT_BUNDLE_IDENTIFIER = org.mozilla.ios.$(PRODUCT_NAME)
38
- MARKETING_VERSION = 10.6.1
38
+ MARKETING_VERSION = 11.0.0
You can’t perform that action at this time.
0 commit comments