2
0

Move Homebrew dependencies to a Brewfile.

This commit is contained in:
Maarten Billemont 2018-06-19 01:52:53 -04:00
parent bff3577ada
commit 3853b6f180
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@ variables:
build_project: build_project:
stage: build stage: build
script: script:
- "( brew install libsodium json-c autoconf automake )" - "( brew bundle )"
- "( ./lib/bin/build_libsodium-macos )" - "( ./lib/bin/build_libsodium-macos )"
- "( cd ./platform-independent/c/cli && ./clean && targets=all ./build && ./mpw-tests && ./mpw-cli-tests )" - "( cd ./platform-independent/c/cli && ./clean && targets=all ./build && ./mpw-tests && ./mpw-cli-tests )"
- "( cd ./gradle && ./gradlew --info clean test )" - "( cd ./gradle && ./gradlew --info clean test )"

5
Brewfile Normal file
View File

@ -0,0 +1,5 @@
brew "libsodium"
brew "json-c"
brew "automake"
brew "autoconf"