We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04a8f18 commit 34ce554Copy full SHA for 34ce554
.github/workflows/ci.yml
@@ -168,6 +168,10 @@ jobs:
168
repository: "google/wycheproof"
169
path: "wycheproof"
170
ref: "master"
171
+ # When run in a docker container the home directory doesn't have the same owner as the
172
+ # apparent user so pip refuses to create a cache dir
173
+ - name: create pip cache dir
174
+ run: mkdir -p "${HOME}/.cache/pip"
175
- run: |
176
echo "OPENSSL_FORCE_FIPS_MODE=1" >> $GITHUB_ENV
177
echo "CFLAGS=-DUSE_OSRANDOM_RNG_FOR_TESTING" >> $GITHUB_ENV
0 commit comments