diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-03-05 21:01:26 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-03-19 09:14:59 +0100 |
commit | 692d313fe3be5f88c454d9247cb014db70146d02 (patch) | |
tree | 35254614327167f689c0f15d80bc77b060e153bf /.github | |
parent | 4d96a3a84dd1d49c6dab9e4131a62882a56cafa3 (diff) | |
download | weechat-692d313fe3be5f88c454d9247cb014db70146d02.zip |
core: switch from Ubuntu 18.04 to 20.04 in CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 448ee6517..d6de82bee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,13 +1,15 @@ name: CI -on: [push, pull_request] +on: + - push + - pull_request jobs: build: name: ${{ matrix.config.name }} - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: @@ -26,8 +28,8 @@ jobs: - name: Install dependencies run: | sudo apt-get update -qq - sudo apt-get --yes --no-install-recommends install devscripts equivs python-pip libenchant-dev autopoint cmake lcov pkg-config libncursesw5-dev gem2deb libperl-dev python-dev python3-dev libaspell-dev liblua5.3-dev tcl8.6-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt20-dev libgnutls28-dev zlib1g-dev curl libcpputest-dev php7.4-dev libphp7.4-embed libargon2-0-dev libsodium-dev pylint3 asciidoctor - sudo -H pip install --ignore-installed msgcheck + sudo apt-get --yes --no-install-recommends install devscripts equivs python3-pip libenchant-dev autopoint cmake lcov pkg-config libncursesw5-dev gem2deb libperl-dev python2-dev python3-dev libaspell-dev liblua5.3-dev tcl8.6-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt20-dev libgnutls28-dev zlib1g-dev curl libcpputest-dev php7.4-dev libphp7.4-embed libargon2-0-dev libsodium-dev pylint3 asciidoctor + sudo -H pip3 install --ignore-installed msgcheck - name: Test patches run: ./tools/build-debian.sh test-patches |