Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ ARG DEBIAN_FRONTEND=noninteractive
# WARNING: DON'T PUT A SPACE AFTER ANY BACKSLASH OR APT WILL BREAK
# One -q produces output suitable for logging (mostly hides
# progress indicators)
RUN apt-get -yqq update && \
apt-get -yqq install \
RUN apt-get install \
--no-install-recommends \
-o Dpkg::Options::="--force-confdef" \
-o Dpkg::Options::="--force-confold" \
-qqUy \
cloc \
curl \
gcc \
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -eo pipefail -u

chown -LR "$USER_ID" /var/run
# Drop permissions of user to match those of the host system
gosu "$USER_ID" python3 "${FWROOT}/toolset/run-tests.py" "$@"
exec gosu "$USER_ID" python3 "${FWROOT}/toolset/run-tests.py" "$@"
Empty file modified toolset/__init__.py
100755 → 100644
Empty file.
Empty file modified toolset/continuous/tfb-shutdown.sh
100644 → 100755
Empty file.
Empty file modified toolset/continuous/tfb-startup.sh
100644 → 100755
Empty file.
Empty file modified toolset/scaffolding/README.md
100755 → 100644
Empty file.
Empty file modified toolset/scaffolding/benchmark_config.json
100755 → 100644
Empty file.
Empty file modified toolset/utils/__init__.py
100755 → 100644
Empty file.
Empty file modified toolset/utils/benchmark_config.py
100755 → 100644
Empty file.
Empty file modified toolset/utils/output_helper.py
100755 → 100644
Empty file.
Empty file modified toolset/utils/scaffolding.py
100755 → 100644
Empty file.
Empty file modified toolset/wrk/concurrency.sh
100644 → 100755
Empty file.
Empty file modified toolset/wrk/pipeline.sh
100644 → 100755
Empty file.
Empty file modified toolset/wrk/query.sh
100644 → 100755
Empty file.
6 changes: 1 addition & 5 deletions toolset/wrk/wrk.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ FROM ubuntu:24.04
COPY concurrency.sh pipeline.lua pipeline.sh query.sh ./

ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get -yqq update >/dev/null && \
apt-get -yqq install >/dev/null \
curl \
wrk && \
chmod 777 concurrency.sh pipeline.sh query.sh
RUN apt-get install --no-install-recommends -qqUy curl wrk > /dev/null

# Environment vars required by the wrk scripts with nonsense defaults
ENV accept=accept \
Expand Down
Loading