mirror of
https://github.com/zhigang1992/RxSwift.git
synced 2026-06-11 08:49:07 +08:00
10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
set -e
|
|
|
|
CONFIGURATIONS=(debug release)
|
|
|
|
for configuration in ${CONFIGURATIONS[@]}
|
|
do
|
|
swift build -c ${configuration} && .build/${configuration}/AllTests
|
|
done
|
|
|