diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2021-11-03 08:51:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-03 12:51:20 +0000 |
| commit | e0b0d9aef6add1b0dc81c52ed19d548f21897226 (patch) | |
| tree | f412c7fc91e4dfd3e499a23d40f4ab3dd70bd947 | |
| parent | 9d10f1f47d6a67d32a3ce2452a67f31fa214c075 (diff) | |
| download | cryptography-e0b0d9aef6add1b0dc81c52ed19d548f21897226.tar.gz | |
Explicitly specify the ref when cloning wycheproof (#6539)
This leads to a github API call which leads to rate limiting which leads to sadness
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d08616ea5..07139624e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,7 @@ jobs: with: repository: "google/wycheproof" path: "wycheproof" + ref: "master" - run: python -m pip install tox requests coverage - name: Compute config hash and set config vars run: | @@ -156,6 +157,7 @@ jobs: with: repository: "google/wycheproof" path: "wycheproof" + ref: "master" - run: | echo "OPENSSL_FORCE_FIPS_MODE=1" >> $GITHUB_ENV echo "CFLAGS=-DUSE_OSRANDOM_RNG_FOR_TESTING" >> $GITHUB_ENV @@ -211,6 +213,7 @@ jobs: with: repository: "google/wycheproof" path: "wycheproof" + ref: "master" - run: python -m pip install tox coverage - name: Tests run: | @@ -268,6 +271,7 @@ jobs: with: repository: "google/wycheproof" path: "wycheproof" + ref: "master" - run: python -m pip install tox coverage - name: Tests run: | @@ -353,6 +357,7 @@ jobs: with: repository: "google/wycheproof" path: "wycheproof" + ref: "master" - name: Download OpenSSL run: | @@ -432,6 +437,7 @@ jobs: with: repository: "google/wycheproof" path: "wycheproof" + ref: "master" - run: tox -r -- --color=yes --wycheproof-root=wycheproof --num-shards=4 --shard-id=${{ matrix.JOB_NUMBER }} env: |
