File tree Expand file tree Collapse file tree 4 files changed +58
-2
lines changed
Expand file tree Collapse file tree 4 files changed +58
-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
1717RUN apt-get update && apt-get install -y lsof dnsutils netcat-openbsd net-tools curl jq # used by integration tests
1818
1919# ruby and jazzy for docs generation
20- RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev
21- RUN gem install jazzy --no-ri --no-rdoc
20+ RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev build-essential
21+ # jazzy no longer works on xenial as ruby is too old.
22+ RUN if [ "${ubuntu_version}" = "focal" ] ; then echo "gem: --no-document" > ~/.gemrc; fi
23+ RUN if [ "${ubuntu_version}" = "focal" ] ; then gem install jazzy; fi
2224
2325# tools
2426RUN 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-metrics:20.04-5.4
7+ build :
8+ args :
9+ ubuntu_version : " focal"
10+ swift_version : " 5.4"
11+
12+ test :
13+ image : swift-metrics:20.04-5.4
14+ environment : []
15+ # - SANITIZER_ARG=--sanitize=thread
16+
17+ shell :
18+ image : swift-metrics: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-metrics:20.04-5.5
7+ build :
8+ args :
9+ ubuntu_version : " focal"
10+ swift_version : " 5.5"
11+
12+ test :
13+ image : swift-metrics:20.04-5.5
14+ environment : []
15+ # - SANITIZER_ARG=--sanitize=thread
16+
17+ shell :
18+ image : swift-metrics:20.04-5.5
Original file line number Diff line number Diff line change 1+ version : " 3"
2+
3+ services :
4+
5+ runtime-setup :
6+ image : swift-metrics:20.04-main
7+ build :
8+ args :
9+ base_image : " swiftlang/swift:nightly-main-focal"
10+
11+
12+ test :
13+ image : swift-metrics:20.04-main
14+ environment : []
15+ # - SANITIZER_ARG=--sanitize=thread
16+
17+ shell :
18+ image : swift-metrics:20.04-main
You can’t perform that action at this time.
0 commit comments