diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-17 20:51:01 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-17 21:27:04 +0100 |
commit | 2d6ab2ec0a139678a41402a2964cec94607438f1 (patch) | |
tree | bea041888ee9eb60ed5d31824987bebc849483a3 | |
parent | c44b79dce7f2f2dec9e802b001dcf0acdfa049d0 (diff) | |
download | weechat-2d6ab2ec0a139678a41402a2964cec94607438f1.zip |
core: fix install of PHP 8.0 in CI
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4006b2878..bbc926376 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: - pull_request env: - WEECHAT_DEPENDENCIES: devscripts equivs python3-pip libenchant-dev autopoint cmake ninja-build lcov pkg-config libncursesw5-dev gem2deb libperl-dev python2-dev python3-dev libaspell-dev liblua5.3-dev tcl8.6-dev guile-2.2-dev libv8-dev libcurl4-gnutls-dev libgcrypt20-dev libgnutls28-dev libzstd-dev zlib1g-dev curl libcpputest-dev php-dev php8.0-dev libphp8.0-embed libargon2-0-dev libsodium-dev pylint python3-bandit asciidoctor + WEECHAT_DEPENDENCIES: devscripts equivs python3-pip libenchant-dev autopoint cmake ninja-build lcov pkg-config libncursesw5-dev gem2deb libperl-dev python2-dev python3-dev libaspell-dev liblua5.3-dev tcl8.6-dev guile-2.2-dev libv8-dev libcurl4-gnutls-dev libgcrypt20-dev libgnutls28-dev libzstd-dev zlib1g-dev curl libcpputest-dev php8.0-dev libphp8.0-embed libargon2-0-dev libsodium-dev pylint python3-bandit asciidoctor jobs: @@ -147,7 +147,7 @@ jobs: sudo apt-add-repository --yes ppa:ondrej/php sudo apt-get update -qq sudo apt-get --yes purge php8.1-dev - sudo apt-get --yes --no-install-recommends install ${{ env.WEECHAT_DEPENDENCIES }} + sudo apt-get --yes --no-install-recommends install ${{ env.WEECHAT_DEPENDENCIES }} php-dev - name: Test Debian patches run: ./tools/build-debian.sh test-patches |