File tree Expand file tree Collapse file tree 7 files changed +18
-16
lines changed Expand file tree Collapse file tree 7 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- source ./build-tools/assertions.sh
17
+ source .. /build-tools/assertions.sh
18
18
19
19
# TODO Remove mac requirement
20
20
assertMac " Mac is required for publishing"
@@ -38,12 +38,12 @@ assertLastCall
38
38
git add VERSION
39
39
git commit -m " Android Release: $VERSION "
40
40
git push
41
- git tag -a $VERSION -m " Android Release: $VERSION "
41
+ git tag -a fuse-android/core/ $VERSION -m " Android Release: $VERSION "
42
42
git push --tags
43
43
44
44
./gradlew publishReleasePublicationToMavenRepository
45
45
46
- gh release create $VERSION \
46
+ gh release create android/core/ $VERSION \
47
47
./fuse/build/outputs/aar/fuse-debug.aar \
48
48
./fuse/build/outputs/aar/fuse-release.aar \
49
49
--verify-tag --generate-notes
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- source build-tools/assertions.sh
17
+ source ../ build-tools/assertions.sh
18
18
19
19
target=" $1 "
20
20
Original file line number Diff line number Diff line change 26
26
# 2. Run tests, this may take awhile.
27
27
# 3. Copy files to a dist/ directory.
28
28
29
- source build-tools/assertions.sh
30
- source build-tools/DirectoryTools.sh
31
- source build-tools/Checksum.sh
29
+ source ../ build-tools/assertions.sh
30
+ source ../ build-tools/DirectoryTools.sh
31
+ source ../ build-tools/Checksum.sh
32
32
33
33
assertMac " Mac is required to build Fuse iOS"
34
34
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- source build-tools/assertions.sh
18
- source build-tools/DirectoryTools.sh
17
+ source ../ build-tools/assertions.sh
18
+ source ../ build-tools/DirectoryTools.sh
19
19
20
20
assertMac " Mac is required for publishing"
21
21
assertGitRepo
@@ -41,10 +41,10 @@ git add VERSION BTFuse/configs/version.xcconfig
41
41
git add VERSION
42
42
git commit -m " iOS Release: $VERSION "
43
43
git push
44
- git tag -a $VERSION -m " iOS Release: $VERSION "
44
+ git tag -a ios/core/ $VERSION -m " iOS Release: $VERSION "
45
45
git push --tags
46
46
47
- gh release create $VERSION \
47
+ gh release create ios/core/ $VERSION \
48
48
./dist/BTFuse.xcframework.zip \
49
49
./dist/BTFuse.xcframework.zip.sha1.txt \
50
50
./dist/BTFuse.framework.dSYM.zip \
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- source build-tools/assertions.sh
17
+ source ../ build-tools/assertions.sh
18
18
19
19
pod spec lint BTFuse.podspec
20
20
assertLastCall
Original file line number Diff line number Diff line change 16
16
17
17
if [ -z " $1 " ]; then
18
18
# Default Tests
19
- IOS_15=$( python3 ./build-tools/iossim.py " Fuse iOS 15" " iOS 15.5" " iPhone 13" )
20
- IOS_16=$( python3 ./build-tools/iossim.py " Fuse iOS 16" " iOS 16.4" " iPhone 14" )
21
- IOS_17=$( python3 ./build-tools/iossim.py " Fuse iOS 17" " iOS 17.5" " iPhone 15" )
19
+ IOS_15=$( python3 .. /build-tools/iossim.py " Fuse iOS 15" " iOS 15.5" " iPhone 13" )
20
+ IOS_16=$( python3 .. /build-tools/iossim.py " Fuse iOS 16" " iOS 16.4" " iPhone 14" )
21
+ IOS_17=$( python3 .. /build-tools/iossim.py " Fuse iOS 17" " iOS 17.5" " iPhone 15" )
22
22
23
23
xcrun simctl boot $IOS_15 > /dev/null
24
24
xcrun simctl boot $IOS_16 > /dev/null
65
65
SIM_VERSION=" iOS $2 "
66
66
SIM_MODEL=" $3 "
67
67
68
- SIM=$( python3 ./build-tools/iossim.py " $SIM_NAME " " $SIM_VERSION " " $SIM_MODEL " )
68
+ SIM=$( python3 .. /build-tools/iossim.py " $SIM_NAME " " $SIM_VERSION " " $SIM_MODEL " )
69
69
echo " Using Sim: $SIM "
70
70
71
71
xcrun simctl boot $SIM > /dev/null
Original file line number Diff line number Diff line change
1
+
2
+ # TODO Needs to control the tagging process, using NPM flags.
You can’t perform that action at this time.
0 commit comments