Merge pull request #396 from str4d/ci-release-fixes

CI: Ensure `apt` repository is up-to-date before installing build deps
This commit is contained in:
str4d 2023-06-13 05:00:52 +01:00 committed by GitHub
commit e6180f1a20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -41,7 +41,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
run: sudo apt update && sudo apt install libfuse-dev
- run: cargo check --all-targets --all-features
clippy:
@ -50,7 +50,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
run: sudo apt update && sudo apt install libfuse-dev
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
@ -68,7 +68,7 @@ jobs:
id: toolchain
- run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
run: sudo apt update && sudo apt install libfuse-dev
- name: Generate coverage report
uses: actions-rs/tarpaulin@v0.1
with:

View file

@ -114,7 +114,7 @@ jobs:
# Prepare the test environment
- name: Install dos2unix for simulating Windows files
run: sudo apt install dos2unix
run: sudo apt update && sudo apt install dos2unix
- name: Write (very not private) age X25519 key
if: matrix.recipient == 'x25519'
run: echo "AGE-SECRET-KEY-1TRYTV7PQS5XPUYSTAQZCD7DQCWC7Q77YJD7UVFJRMW4J82Q6930QS70MRX" >key.txt

View file

@ -70,7 +70,7 @@ jobs:
- run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Install linux build dependencies
run: sudo apt install ${{ matrix.build_deps }}
run: sudo apt update && sudo apt install ${{ matrix.build_deps }}
if: matrix.build_deps != ''
- name: Set up .cargo/config
@ -177,7 +177,7 @@ jobs:
run: cargo install cargo-deb
- name: Install build dependencies
run: sudo apt install ${{ matrix.build_deps }}
run: sudo apt update && sudo apt install ${{ matrix.build_deps }}
if: matrix.build_deps != ''
- name: Set up .cargo/config