Skip to content

Commit 477706a

Browse files
authored
[Release] Update for 29th of January 2024 (the-benchmarker#7177)
* update version * use cmd instead of entrypoint (useful for debug) * dockerfile enhancments * do not upgrade dub * do not specify parallel ci workers to run * remove CI restriction * add ssl no verify * update vapor [ski ci] * fix haskell * update * update * update dockerfile
1 parent f95a876 commit 477706a

35 files changed

+63504
-52502
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix: ${{fromJson(needs.matrix.outputs.matrix)}}
37-
max-parallel: 4
3837

3938
steps:
4039
- uses: actions/checkout@v4

.tasks/db.rake

+7-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,15 @@ end
2929
namespace :db do
3030
task :check_failures do
3131
results = JSON.parse(File.read('data.json'))
32-
frameworks = results['metrics'].filter_map do |row|
32+
results['frameworks'].map { _1['label'] }
33+
failing_frameworks = results['metrics'].filter_map do |row|
3334
row['framework_id'] if row['label'] == 'total_requests_per_s' && (row['value']).zero?
3435
end
35-
$stdout.puts results['frameworks'].filter_map { |row| row['label'] if frameworks.include?(row['id']) }
36+
list_of = Dir.glob('*/*/config.yaml').map { _1.split('/')[1] }
37+
$stdout.puts "Failing : #{results['frameworks'].filter_map do |row|
38+
row['label'] if failing_frameworks.include?(row['id'])
39+
end}"
40+
$stdout.puts "Missing : #{list_of - results['frameworks'].map { _1['label'] }}"
3641
end
3742
task :raw_export do
3843
raise 'Please provide a database' unless ENV['DATABASE_URL']

c/Dockerfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ FROM debian:bullseye
33
WORKDIR /usr/src/app
44

55
RUN apt-get -qq update
6-
RUN apt-get -qy install build-essential wget
6+
RUN apt-get -qy install --no-install-recommends build-essential wget
77

88
{{#build_deps}}
9-
RUN apt-get -qy install {{{.}}}
9+
RUN apt-get -qy install --no-install-recommends {{{.}}}
1010
{{/build_deps}}
1111

12+
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
13+
1214
{{#files}}
1315
COPY '{{source}}' '{{target}}'
1416
{{/files}}
@@ -28,7 +30,7 @@ WORKDIR /opt/web
2830
RUN apt-get -qq update
2931

3032
{{#bin_deps}}
31-
RUN apt-get -qy install {{{.}}}
33+
RUN apt-get -qy install --no-install-recommends {{{.}}}
3234
{{/bin_deps}}
3335

3436
{{#binaries}}
@@ -43,4 +45,4 @@ RUN apt-get -qq update
4345
ENV {{{.}}}
4446
{{/environment}}
4547

46-
ENTRYPOINT {{{command}}}
48+
CMD {{{command}}}

c/agoo-c/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ framework:
33
version: 0.7
44

55
download:
6-
- wget -c https://github.com/ohler55/agoo-c/tarball/v0.7.3 -O agoo.tar.gz
6+
- wget --no-check-certificate -c https://github.com/ohler55/agoo-c/tarball/v0.7.3 -O agoo.tar.gz
77
- tar xzf agoo.tar.gz
88
- mv ohler55* agoo-c
99
- cd agoo-c/src && make

c/kore/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ framework:
66
version: 3.3
77

88
download:
9-
- wget -c https://github.com/jorisvink/kore/archive/3.3.1-release.tar.gz
9+
- wget --no-check-certificate -c https://github.com/jorisvink/kore/archive/3.3.1-release.tar.gz
1010
- tar -xvf 3.3.1-release.tar.gz
1111
- cd kore-3.3.1-release && TASKS=1 NOTLS=1 make && make install
1212

clojure/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ WORKDIR /opt/bin
3333
{{/binaries}}
3434

3535
{{#command}}
36-
ENTRYPOINT {{{.}}}
36+
CMD {{{.}}}
3737
{{/command}}

cpp/Dockerfile

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ FROM debian:bookworm
33
WORKDIR /usr/src/app
44

55
RUN apt-get -qq update
6-
RUN apt-get -qy install build-essential git cmake
6+
RUN apt-get -qy install --no-install-recommends build-essential git cmake
7+
8+
ENV GIT_SSL_NO_VERIFY=1
79

810
{{#build_deps}}
9-
RUN apt-get -qy install {{{.}}}
11+
RUN apt-get -qy install --no-install-recommends {{{.}}}
1012
{{/build_deps}}
1113

14+
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
15+
1216
{{#files}}
1317
COPY '{{source}}' '{{target}}'
1418
{{/files}}
@@ -31,7 +35,7 @@ WORKDIR /opt/web
3135
RUN apt-get -qq update
3236

3337
{{#bin_deps}}
34-
RUN apt-get -qy install {{{.}}}
38+
RUN apt-get -qy install --no-install-recommends {{{.}}}
3539
{{/bin_deps}}
3640

3741
{{#files}}
@@ -41,4 +45,4 @@ RUN apt-get -qq update
4145
COPY --from=0 /usr/src/app/{{{.}}} {{{.}}}
4246
{{/binaries}}
4347

44-
ENTRYPOINT {{{command}}}
48+
CMD {{{command}}}

crystal/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WORKDIR /usr/src/app
99
RUN apt-get -qq update
1010

1111
{{#build_deps}}
12-
RUN apt-get -qy install {{{.}}}
12+
RUN apt-get -qy install --no-install-recommends {{{.}}}
1313
{{/build_deps}}
1414

1515
RUN shards lock
@@ -30,4 +30,4 @@ COPY --from=0 /usr/src/app/bin/server /usr/bin/app
3030
ENV {{{.}}}
3131
{{/environment}}
3232

33-
ENTRYPOINT {{command}}
33+
CMD {{command}}

csharp/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ COPY --from=build /usr/src/app/out out
2020
ENV {{{.}}}
2121
{{/environment}}
2222

23-
ENTRYPOINT {{command}}
23+
CMD {{command}}

d/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:trixie AS build
1+
FROM debian:stable AS build
22

33
WORKDIR /usr/src/app
44

@@ -12,7 +12,7 @@ RUN apt-get -qy install build-essential ldc dub openssl libssl-dev zlib1g-dev ll
1212
ENV DC=ldc2
1313
RUN dub build -b release --compiler=ldc2
1414

15-
FROM debian:trixie
15+
FROM debian:stable
1616

1717
WORKDIR /opt/web
1818

@@ -22,4 +22,4 @@ COPY --from=build /usr/src/app/server /opt/web/server
2222

2323
USER nobody
2424

25-
ENTRYPOINT {{{command}}}
25+
CMD {{{command}}}

d/lighttp/dub.selections.json

-10
This file was deleted.

dart/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ COPY --from=build /bin/sh /bin/sh
2323
COPY --from=build /runtime/ /
2424
COPY --from=build /app/server /app/server
2525

26-
ENTRYPOINT {{command}}
26+
CMD {{command}}

0 commit comments

Comments
 (0)