mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
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:
commit
e6180f1a20
3 changed files with 6 additions and 6 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -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:
|
||||
|
|
2
.github/workflows/interop.yml
vendored
2
.github/workflows/interop.yml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue