File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1- ARG swift_version=5.7
1+ ARG swift_version=6.0
22ARG base_image=swift:$swift_version-amazonlinux2
33FROM $base_image
44# needed to do again after FROM due to docker limitation
@@ -11,10 +11,3 @@ RUN yum install -y lsof dnsutils netcat-openbsd net-tools curl jq # used by inte
1111# tools
1212RUN mkdir -p $HOME/.tools
1313RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile
14-
15- # swiftformat (until part of the toolchain)
16-
17- ARG swiftformat_version=0.50.1
18- RUN git clone --branch $swiftformat_version --depth 1 https://github.com/nicklockwood/SwiftFormat $HOME/.tools/swift-format
19- RUN cd $HOME/.tools/swift-format && swift build -c release
20- RUN ln -s $HOME/.tools/swift-format/.build/release/swiftformat $HOME/.tools/swiftformat
Original file line number Diff line number Diff line change 11# this file is not designed to be run directly
22# instead, use the docker-compose.<os>.<swift> files
3- # eg docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.al2.57.yaml run test
4- version : " 3"
3+ # eg docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.al2.6.0.yaml run test
54
65services :
76
@@ -41,7 +40,7 @@ services:
4140 LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/APIGateway &&
4241 LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/AWSSDK &&
4342 LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/HelloWorld &&
44- LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/Soto &&
43+ LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/Soto
4544 "
4645
4746 # util
Original file line number Diff line number Diff line change @@ -163,3 +163,11 @@ tbd + link to docc
163163### Background Tasks
164164
165165tbd + link to docc
166+
167+ ### Development
168+
169+ Your contributions are welcome. If you open a pull request, be sure to ensure it passes the soundness checks
170+
171+ ```
172+ docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.al2.6.0.yaml run soundness
173+ ```
You can’t perform that action at this time.
0 commit comments