fixed CI libadwaita version mismatch
Some checks failed
dev release / build (push) Failing after 1s

This commit is contained in:
Breadway 2026-08-03 11:43:19 +08:00
parent 561dd46dcf
commit 72f86f0675
3 changed files with 33 additions and 26 deletions

View file

@ -16,8 +16,17 @@ jobs:
git clone --branch "${GITHUB_REF_NAME}" --depth 1 \
"https://git.breadway.dev/${GITHUB_REPOSITORY}.git" src
- name: build
run: cd src && cargo build --release --locked
- name: build inside container
run: |
podman run --rm \
-v "$(pwd)/src:/workspace" \
-w /workspace \
fedora:41 \
bash -c "
set -euo pipefail
dnf install -y gcc pkgconf-pkg-config libadwaita-devel cargo
cargo build --release --locked
"
- name: prepare artifacts
run: |