Skip to content

Commit b3e8505

Browse files
committed
Merge branch '114-build-example-app-in-ci' into 'dev'
Add Gitlab file that tells CI how to build the example app. Closes objectbox-swift#114 See merge request objectbox/objectbox-swift-public!3
2 parents b186053 + 6df25f3 commit b3e8505

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.gitlab-ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
stages:
2+
- build
3+
- archive
4+
5+
build_project:
6+
stage: build
7+
tags: [mac, x64, xcode]
8+
script:
9+
- cd Example
10+
- pod repo update
11+
- pod install
12+
- Pods/ObjectBox/setup.rb
13+
- xcodebuild build -workspace NotesExample.xcworkspace -scheme NotesExample-macOS -destination 'platform=OS X,arch=x86_64' -verbose
14+
15+
variables:
16+
GIT_SUBMODULE_STRATEGY: recursive

0 commit comments

Comments
 (0)