File tree 3 files changed +11
-11
lines changed
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
2
2
ARG base_image=swift:$swift_version-amazonlinux2
3
3
FROM $base_image
4
4
# 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
11
11
# tools
12
12
RUN mkdir -p $HOME/.tools
13
13
RUN 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 1
1
# this file is not designed to be run directly
2
2
# 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
5
4
6
5
services :
7
6
@@ -41,7 +40,7 @@ services:
41
40
LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/APIGateway &&
42
41
LAMBDA_USE_LOCAL_DEPS=true swift build --package-path Examples/AWSSDK &&
43
42
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
45
44
"
46
45
47
46
# util
Original file line number Diff line number Diff line change @@ -163,3 +163,11 @@ tbd + link to docc
163
163
### Background Tasks
164
164
165
165
tbd + 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