diff --git a/.ci/woodpecker/check.yml b/.ci/woodpecker/check.yml index d4f53af..f1f0aab 100644 --- a/.ci/woodpecker/check.yml +++ b/.ci/woodpecker/check.yml @@ -9,7 +9,7 @@ pipeline: event: [push, pull_request] image: rust:1.59.0-slim commands: - - apt-get -qq update && apt-get -yqq install pkg-config libssl-dev build-essential + - apt-get -qq update && apt-get -yqq install pkg-config libssl-dev build-essential libclang1 - cargo install sqlx-cli --features sqlite - cd quickpeep && bash dev_db.sh && cd .. #- rustup component add clippy diff --git a/.ci/woodpecker/release.yml b/.ci/woodpecker/release.yml index 63a428f..548b488 100644 --- a/.ci/woodpecker/release.yml +++ b/.ci/woodpecker/release.yml @@ -17,7 +17,7 @@ pipeline: image: "rust:1.59.0" commands: - - apt-get -qq update && apt-get -yqq install pkg-config libssl-dev build-essential + - apt-get -qq update && apt-get -yqq install pkg-config libssl-dev build-essential libclang1 - cargo install sqlx-cli --features sqlite - "qualsuff=`echo -$WOODPECKER_TAG-$WOODPECKER_ARCH | sed s%/%-%`" - cd quickpeep && bash dev_db.sh && cd ..