File tree Expand file tree Collapse file tree 4 files changed +64
-2
lines changed Expand file tree Collapse file tree 4 files changed +64
-2
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,11 @@ RUN apt-get update && apt-get install -y wget
17
17
RUN apt-get update && apt-get install -y lsof dnsutils netcat-openbsd net-tools curl jq # used by integration tests
18
18
19
19
# ruby and jazzy for docs generation
20
- RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev
20
+ RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev build-essential
21
+ # switch off gem docs building
22
+ RUN echo "gem: --no-document" > ~/.gemrc
21
23
# jazzy no longer works on xenial as ruby is too old.
22
- RUN if [ "${ubuntu_version}" != "xenial" ] ; then gem install jazzy --no-ri --no-rdoc ; fi
24
+ RUN if [ "${ubuntu_version}" != "xenial" ] ; then gem install jazzy; fi
23
25
24
26
# tools
25
27
RUN mkdir -p $HOME/.tools
Original file line number Diff line number Diff line change
1
+ version : " 3"
2
+
3
+ services :
4
+
5
+ runtime-setup :
6
+ image : swift-http-structured-headers:20.04-5.4
7
+ build :
8
+ args :
9
+ ubuntu_version : " focal"
10
+ swift_version : " 5.4"
11
+
12
+ unit-tests :
13
+ image : swift-http-structured-headers:20.04-5.4
14
+
15
+ test :
16
+ image : swift-http-structured-headers:20.04-5.4
17
+
18
+ shell :
19
+ image : swift-http-structured-headers:20.04-5.4
20
+
Original file line number Diff line number Diff line change
1
+ version : " 3"
2
+
3
+ services :
4
+
5
+ runtime-setup :
6
+ image : swift-http-structured-headers:20.04-5.5
7
+ build :
8
+ args :
9
+ base_image : " swiftlang/swift:nightly-5.5-focal"
10
+ ubuntu_version : " focal"
11
+
12
+ unit-tests :
13
+ image : swift-http-structured-headers:20.04-5.5
14
+
15
+ test :
16
+ image : swift-http-structured-headers:20.04-5.5
17
+
18
+ shell :
19
+ image : swift-http-structured-headers:20.04-5.5
20
+
Original file line number Diff line number Diff line change
1
+ version : " 3"
2
+
3
+ services :
4
+
5
+ runtime-setup :
6
+ image : swift-http-structured-headers:20.04-main
7
+ build :
8
+ args :
9
+ base_image : " swiftlang/swift:nightly-main-focal"
10
+ ubuntu_version : " focal"
11
+
12
+ unit-tests :
13
+ image : swift-http-structured-headers:20.04-main
14
+
15
+ test :
16
+ image : swift-http-structured-headers:20.04-main
17
+
18
+ shell :
19
+ image : swift-http-structured-headers:20.04-main
20
+
You can’t perform that action at this time.
0 commit comments