File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,10 @@ 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
21
- RUN if [ "${ubuntu_version}" != "xenial" ] ; then gem install jazzy --no-ri --no-rdoc ; fi
20
+ RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev build-essential
21
+ # switch of gem docs building
22
+ RUN echo "gem: --no-document" > ~/.gemrc
23
+ RUN if [ "${ubuntu_version}" != "xenial" ] ; then gem install jazzy ; fi
22
24
23
25
# tools
24
26
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-service-lifecycle:20.04-5.4
7
+ build :
8
+ args :
9
+ base_image : " swiftlang/swift:nightly-5.4-focal"
10
+
11
+ test :
12
+ image : swift-service-lifecycle:20.04-5.4
13
+ environment :
14
+ - SKIP_SIGNAL_TEST=true
15
+
16
+ shell :
17
+ image : swift-service-lifecycle:20.04-5.4
Original file line number Diff line number Diff line change
1
+ version : " 3"
2
+
3
+ services :
4
+
5
+ runtime-setup :
6
+ image : swift-service-lifecycle:20.04-main
7
+ build :
8
+ args :
9
+ base_image : " swiftlang/swift:nightly-main-focal"
10
+
11
+ test :
12
+ image : swift-service-lifecycle:20.04-main
13
+ environment :
14
+ - SKIP_SIGNAL_TEST=true
15
+
16
+ shell :
17
+ image : swift-service-lifecycle:20.04-main4
You can’t perform that action at this time.
0 commit comments