20 lines
763 B
YAML
20 lines
763 B
YAML
variables:
|
|
SHLVL: 0
|
|
JEKYLL_ENV: production
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
GIT_DEPTH: "3"
|
|
|
|
build_project:
|
|
stage: build
|
|
script:
|
|
- "( brew install libsodium json-c )"
|
|
- "( ./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 )"
|
|
tags:
|
|
- brew
|
|
- java
|
|
- xcode_9
|