apt update before install
Some checks failed
Continuous integration / Check (push) Failing after 2m26s
Continuous integration / build (push) Has been cancelled

This commit is contained in:
Eau
2026-03-18 00:04:52 -05:00
parent 6ca2dee104
commit 08a1634a4d

View File

@@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: sudo apt-get install ${{ env.APT_PACKAGES }}
- run: apt update && apt install ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo check --target "${{ env.TARGET_PLATFORM }}"
build:
@@ -22,6 +22,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: sudo apt-get install ${{ env.APT_PACKAGES }}
- run: apt update && apt install ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo build --target "${{ env.TARGET_PLATFORM }}