forked from loafle/openapi-generator-original
* update bitrise.io * fix build * avoid using mvn * remove mvn * update * skip * [swift5][client] fix CI issue cyclic dependency * trigger build * comment out vapour * alarmfire --------- Co-authored-by: Bruno Coelho <4brunu@gmail.com>
34 lines
1.5 KiB
Bash
Executable File
34 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
DIRECTORY=`dirname $0`
|
|
|
|
# example project with unit tests
|
|
(cd $DIRECTORY/alamofireLibrary/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
(cd $DIRECTORY/asyncAwaitLibrary/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
(cd $DIRECTORY/combineLibrary/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
(cd $DIRECTORY/default/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
(cd $DIRECTORY/promisekitLibrary/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
(cd $DIRECTORY/rxswiftLibrary/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
(cd $DIRECTORY/urlsessionLibrary/SwaggerClientTests/ && ./run_xcodebuild.sh)
|
|
|
|
# spm build
|
|
(cd $DIRECTORY/alamofireLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/anycodableLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/asyncAwaitLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/combineLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/default/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/deprecated/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/frozenEnums/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/nonPublicApi/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/objcCompatible/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/oneOf/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/promisekitLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/readonlyProperties/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/resultLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/rxswiftLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/urlsessionLibrary/ && ./run_spmbuild.sh)
|
|
#(cd $DIRECTORY/vaporLibrary/ && ./run_spmbuild.sh)
|
|
(cd $DIRECTORY/x-swift-hashable/ && ./run_spmbuild.sh)
|
|
|