Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
238
Merge Requests
11
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Commits
ac4d0772
Commit
ac4d0772
authored
4 hours ago
by
Martin Santangelo
Browse files
Options
Download
(feat) ios CI RN 0.61
parent
f67dc5d7
fix/ios-ci-build
No related merge requests found
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
557 additions
and
9 deletions
+557
-9
.circleci/config.yml
View file @
ac4d0772
...
...
@@ -43,10 +43,10 @@ jobs:
-
store_artifacts
:
path
:
test-results
ios
:
macos
:
xcode
:
"
10.
1
"
xcode
:
"
10.
3.0
"
working_directory
:
~/mobile-native
# use a --login shell so our "set Ruby version" command gets picked up for later steps
...
...
@@ -60,7 +60,7 @@ jobs:
command
:
brew install getsentry/tools/sentry-cli
-
run
:
name
:
set Ruby version
command
:
echo "ruby-2.
4
" > ~/.ruby-version
command
:
echo "ruby-2.
6
" > ~/.ruby-version
-
restore_cache
:
key
:
yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }}
...
...
@@ -94,6 +94,19 @@ jobs:
paths
:
-
vendor/bundle
-
restore_cache
:
key
:
pods-v1-{{ checksum "ios/Podfile.lock" }}-{{ arch }}
-
run
:
name
:
Install CocoaPods
command
:
pod install --verbose
working_directory
:
ios
-
save_cache
:
key
:
pods-v1-{{ checksum "ios/Podfile.lock" }}-{{ arch }}
paths
:
-
ios/Pods
### TODO- get tests running with fastlane
#- run:
...
...
@@ -114,7 +127,7 @@ jobs:
#- store_artifacts:
# path: ios/test-results
-
run
:
-
run
:
name
:
Build release .ipa
command
:
fastlane buildrelease
working_directory
:
ios
...
...
@@ -124,8 +137,8 @@ jobs:
-
/release-*/
-
test/circle-ci
-
run
:
name
:
Upload to crashalytics
-
run
:
name
:
Upload to crashalytics
command
:
echo "TODO"
working_directory
:
ios
branches
:
...
...
@@ -162,8 +175,8 @@ jobs:
command
:
|
apk add git
-
checkout
-
run
:
name
:
Tag sentry release
-
run
:
name
:
Tag sentry release
command
:
|
version=`cat /tmp/workspace/version`
echo Tagging release with ${version}
...
...
This diff is collapsed.
.gitignore
View file @
ac4d0772
...
...
@@ -5,7 +5,6 @@
# Xcode
#
ios/Podfile.lock
build/
*.pbxuser
!default.pbxuser
...
...
This diff is collapsed.
ios/Podfile.lock
0 → 100644
View file @
ac4d0772
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment