We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cffbfad commit ed39d47Copy full SHA for ed39d47
scripts/integration_tests.sh
@@ -13,9 +13,12 @@
13
##
14
##===----------------------------------------------------------------------===##
15
16
-set +ex
+set +x -e
17
18
-LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/APIGateway
19
-LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/AWSSDK
20
-LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/HelloWorld
21
-LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/Soto
+for EXAMPLE in $(find Examples -type d -d 1);
+do
+ echo "Building $EXAMPLE"
+ pushd $EXAMPLE
22
+ LAMBDA_USE_LOCAL_DEPS=../.. swift build
23
+ popd
24
+done
0 commit comments