Skip to content

Instantly share code, notes, and snippets.

@Benzhaomin
Created June 25, 2019 22:23
Show Gist options
  • Save Benzhaomin/b96f7fb042b7d7a0471cd028fb037bdc to your computer and use it in GitHub Desktop.
Save Benzhaomin/b96f7fb042b7d7a0471cd028fb037bdc to your computer and use it in GitHub Desktop.
phoronix-test-suite with anonymous stuff turned off and batch runs setup (WIP)
FROM firejox/docker-pts:latest
LABEL maintainer="Benjamin Maisonnas <ben@wainei.net>"
# add some often required dependencies to run tests
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
apt-file \
build-essential \
mesa-utils \
unzip
# update config to not upload anything and never prompt the user in batch mode
RUN phoronix-test-suite enterprise-setup && \
phoronix-test-suite user-config-set UploadResults=FALSE && \
phoronix-test-suite user-config-set PromptSaveName=FALSE && \
phoronix-test-suite user-config-set PromptForTestIdentifier=FALSE && \
phoronix-test-suite user-config-set PromptForTestDescription=FALSE && \
phoronix-test-suite user-config-set RunAllTestCombinations=FALSE && \
phoronix-test-suite user-config-set Configured=TRUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment