File tree 2 files changed +5
-11
lines changed
2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 29
29
uses : examples_matrix.yml
30
30
with :
31
31
name : " Integration tests"
32
- matrix_linux_command : " pushd Examples/$EXAMPLE && LAMBDA_USE_LOCAL_DEPS=../.. swift build && popd "
32
+ matrix_linux_command : " LAMBDA_USE_LOCAL_DEPS=../.. swift build"
33
33
34
34
swift-6-language-mode :
35
35
name : Swift 6 Language Mode
Original file line number Diff line number Diff line change 13
13
# #
14
14
# #===----------------------------------------------------------------------===##
15
15
16
- # set +x -e
17
-
18
- # for EXAMPLE in $(find Examples -type d -d 1);
19
- # do
20
- # echo "Building $EXAMPLE"
21
- # pushd $EXAMPLE
22
- # LAMBDA_USE_LOCAL_DEPS=../.. swift build
23
- # popd
24
- # done
25
-
26
16
set -euo pipefail
27
17
28
18
log () { printf -- " ** %s\n" " $* " >&2 ; }
@@ -38,6 +28,8 @@ command_nightly_6_0="$COMMAND_OVERRIDE_NIGHTLY_6_0"
38
28
command_nightly_main=" $COMMAND_OVERRIDE_NIGHTLY_MAIN "
39
29
example=" $EXAMPLE "
40
30
31
+ pushd Examples/" $example " > /dev/null
32
+
41
33
if [[ " $swift_version " == " nightly-6.0" ]] && [[ -n " $command_nightly_6_0 " ]]; then
42
34
log " Running nightly 6.0 command override"
43
35
eval " $command_nightly_6_0 "
48
40
log " Running default command"
49
41
eval " $command "
50
42
fi
43
+
44
+ popd
You can’t perform that action at this time.
0 commit comments