RxSwift/scripts/validate-playgrounds.sh
2016-07-03 13:03:47 +02:00

17 lines
522 B
Bash
Executable File

. scripts/common.sh
CONFIGURATIONS=(Release)
# make sure osx builds
for scheme in "RxSwift-OSX"
do
for configuration in ${CONFIGURATIONS[@]}
do
PAGES_PATH=${BUILD_DIRECTORY}/Build/Products/${configuration}/all-playground-pages.swift
rx ${scheme} ${configuration} "" build
cat Rx.playground/Sources/*.swift Rx.playground/Pages/**/*.swift > ${PAGES_PATH}
swift -v -D NOT_IN_PLAYGROUND -target x86_64-apple-macosx10.10 -F ${BUILD_DIRECTORY}/Build/Products/${configuration} ${PAGES_PATH}
done
done