2
0
MasterPassword/.gitlab-ci.yml

20 lines
763 B
YAML
Raw Normal View History

2018-06-05 15:30:19 +00:00
variables:
2018-06-05 17:32:08 +00:00
SHLVL: 0
2018-06-05 15:30:19 +00:00
JEKYLL_ENV: production
GIT_SUBMODULE_STRATEGY: recursive
2018-06-05 18:44:54 +00:00
GIT_DEPTH: "3"
2018-06-05 15:30:19 +00:00
build_project:
stage: build
script:
2018-06-05 16:54:09 +00:00
- "( brew install libsodium json-c )"
2018-06-05 15:30:19 +00:00
- "( ./lib/bin/build_libsodium-macos )"
- "( cd ./platform-independent/cli-c && ./clean && targets='mpw mpw-bench mpw-tests' ./build && ./mpw-tests && ./mpw-cli-tests )"
- "( cd ./gradle && ./gradlew --info clean test )"
- "( xcodebuild -workspace platform-darwin/MasterPassword.xcworkspace -configuration 'Test' -scheme 'MasterPassword iOS' -sdk iphonesimulator clean build )"
- "( xcodebuild -workspace platform-darwin/MasterPassword.xcworkspace -configuration 'Test' -scheme 'MasterPassword macOS' clean build )"
2018-06-05 15:30:19 +00:00
tags:
2018-06-05 16:54:09 +00:00
- brew
- java
- xcode_9