Skip to content

Commit

Permalink
Try to avoid out-of-diskspace CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
thedataking committed Jul 27, 2023
1 parent 51017e5 commit 7535860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test-x86-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ jobs:
argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip
- name: cargo build for ${{ matrix.target }} ${{ matrix.build.name }}
run: |
cargo clean
rustup target add ${{ matrix.target }}
cargo build --target ${{ matrix.target }} ${{ matrix.build.flags }}
env:
RUSTFLAGS: "-C overflow-checks=on"
- name: download, check, and unpack argon test vectors
if: ${{ steps.cache-argon.outputs.cache-hit != 'true' }}
run: |
run: | # delete the downloaded .zip to avoid out-of-diskspace errors
curl --silent -O $ARGON_URL
curl --silent -O $ARGON_URL_MD5
md5sum --check argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip.md5sum
unzip -q argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip
rm argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip
mv argon_coveragetool_av1_base_and_extended_profiles_v2.1 tests/argon
env:
ARGON_URL: https://storage.googleapis.com/downloads.aomedia.org/assets/zip/argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip
Expand Down

0 comments on commit 7535860

Please sign in to comment.