Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
36bdd33
add docker fine grained permission to the plugin
sebsto Oct 8, 2024
7b28a79
swift-format
sebsto Oct 8, 2024
32b99bd
initial commit to fix docker compose
sebsto Oct 8, 2024
83ed705
update docker files
sebsto Oct 8, 2024
7d26fe7
add GH action to compile examples on PR
sebsto Oct 8, 2024
6cebe1a
Merge branch 'main' into sebsto/docker
sebsto Oct 8, 2024
686337a
make script executable
sebsto Oct 8, 2024
34ffd09
disable integration tests on Swift < 6.0
sebsto Oct 8, 2024
17dcfcc
Merge branch 'main' into sebsto/docker
sebsto Oct 8, 2024
355cd16
Merge branch 'main' into sebsto/docker
sebsto Oct 9, 2024
cffbfad
remove old docker infrastructure
sebsto Oct 9, 2024
ed39d47
automate the discovery of examples
sebsto Oct 9, 2024
f37846d
v2 API Proposal Document (#339)
aryan-25 Oct 9, 2024
6540328
Merge branch 'main' into sebsto/docker
sebsto Oct 9, 2024
b30dfe4
fix variable name for matrix action
sebsto Oct 9, 2024
ba36907
first test to get a matrix setup
sebsto Oct 9, 2024
876b237
refine matrix
sebsto Oct 9, 2024
534502b
refine matrix
sebsto Oct 9, 2024
dd21f48
fix reference to sub workflow
sebsto Oct 9, 2024
cce5208
remove references from docker
sebsto Oct 9, 2024
64337df
test passing an array
sebsto Oct 9, 2024
7df6a04
try to pass an array
sebsto Oct 9, 2024
26c6e31
test passing array
sebsto Oct 9, 2024
6156e93
revert back to hard coded example list in the matrix
sebsto Oct 9, 2024
c8ba600
add the example name in the job name
sebsto Oct 9, 2024
dd84d7c
improve naming
sebsto Oct 9, 2024
639224f
Use only one Swift version to build the examples
sebsto Oct 9, 2024
9c89ff2
fix image name
sebsto Oct 9, 2024
0f5ce60
use latest alias to fetch the latest version
sebsto Oct 9, 2024
8df40d8
Merge branch 'main' into sebsto/docker
sebsto Oct 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
automate the discovery of examples
  • Loading branch information
sebsto committed Oct 9, 2024
commit ed39d47744551427b9fb939e5572cdabeac7faff
13 changes: 8 additions & 5 deletions scripts/integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
##
##===----------------------------------------------------------------------===##

set +ex
set +x -e

LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/APIGateway
LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/AWSSDK
LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/HelloWorld
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
LAMBDA_USE_LOCAL_DEPS=../.. swift build
popd
done