mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
bf19d0482c
Name is now the OS followed by the test, for example: ubuntu-22.04: gcc instead of: Tests: gcc on ubuntu-22.04
275 lines
7.2 KiB
YAML
275 lines
7.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '22 9 * * 2'
|
|
|
|
env:
|
|
WEECHAT_DEPENDENCIES: >-
|
|
asciidoctor
|
|
cmake
|
|
curl
|
|
devscripts
|
|
equivs
|
|
flake8
|
|
gem2deb
|
|
guile-3.0-dev
|
|
lcov
|
|
libargon2-dev
|
|
libaspell-dev
|
|
libcjson-dev
|
|
libcpputest-dev
|
|
libcurl4-gnutls-dev
|
|
libgcrypt20-dev
|
|
libgnutls28-dev
|
|
liblua5.3-dev
|
|
libncurses-dev
|
|
libperl-dev
|
|
libphp-embed
|
|
libsodium-dev
|
|
libv8-dev
|
|
libzstd-dev
|
|
ninja-build
|
|
php-dev
|
|
pkgconf
|
|
pylint
|
|
python3-bandit
|
|
python3-dev
|
|
python3-pip
|
|
ruby-pygments.rb
|
|
shellcheck
|
|
tcl8.6-dev
|
|
zlib1g-dev
|
|
|
|
jobs:
|
|
|
|
tests_linux:
|
|
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-22.04
|
|
config:
|
|
- { name: "gcc", cc: "gcc", cxx: "g++", buildargs: "" }
|
|
- { name: "gcc_ninja", cc: "gcc", cxx: "g++", buildargs: "-G Ninja" }
|
|
- { name: "gcc_no_nls", cc: "gcc", cxx: "g++", buildargs: "-DENABLE_NLS=OFF -DENABLE_DOC=OFF" }
|
|
- { name: "gcc_no_zstd", cc: "gcc", cxx: "g++", buildargs: "-DENABLE_ZSTD=OFF -DENABLE_DOC=OFF" }
|
|
- { name: "gcc_no_cjson", cc: "gcc", cxx: "g++", buildargs: "-DENABLE_CJSON=OFF -DENABLE_DOC=OFF" }
|
|
- { name: "gcc_coverage", cc: "gcc", cxx: "g++", buildargs: "-DENABLE_CODE_COVERAGE=ON" }
|
|
- { name: "clang", cc: "clang", cxx: "clang++", buildargs: "" }
|
|
|
|
name: "${{ matrix.os }}: ${{ matrix.config.name }}"
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update -qq
|
|
sudo apt-get --yes --no-install-recommends install ${{ env.WEECHAT_DEPENDENCIES }}
|
|
# uninstall php imagick as is causes a crash when loading php plugin (see #2009)
|
|
sudo apt-get --yes purge php8.1-imagick
|
|
sudo -H pip3 install --ignore-installed msgcheck
|
|
|
|
- name: Check gettext files
|
|
run: msgcheck po/*.po
|
|
|
|
- name: Check shell and Python scripts
|
|
run: ./tools/check_scripts.sh
|
|
|
|
- name: Check Python stub file
|
|
run: ./tools/generate_python_stub.py | diff src/plugins/python/weechat.pyi -
|
|
|
|
- name: Check Curl symbols
|
|
run: curl --silent --show-error --fail --retry 10 https://raw.githubusercontent.com/curl/curl/master/docs/libcurl/symbols-in-versions | ./tools/check_curl_symbols.py
|
|
|
|
- name: Build and run tests
|
|
env:
|
|
CC: ${{ matrix.config.cc }}
|
|
CXX: ${{ matrix.config.cxx }}
|
|
BUILDARGS: ${{ matrix.config.buildargs }}
|
|
run: ./tools/build_test.sh
|
|
|
|
- name: Run WeeChat
|
|
env:
|
|
TERM: xterm-256color
|
|
run: |
|
|
weechat --help
|
|
weechat-curses --help
|
|
weechat --version
|
|
weechat --build-info
|
|
weechat --colors
|
|
weechat --license
|
|
weechat --run-command "/debug dirs;/debug libs" --run-command "/quit"
|
|
|
|
- name: Test Relay OpenAPI
|
|
if: ${{ matrix.config.name == 'gcc' }}
|
|
env:
|
|
RELAY_PASSWORD: test
|
|
run: |
|
|
sudo -H pip3 install --ignore-installed schemathesis
|
|
weechat-headless \
|
|
--dir /tmp/weechat-test-api \
|
|
--run-command '/set relay.network.password "${{ env.RELAY_PASSWORD }}"' \
|
|
--run-command '/relay add api 9000' \
|
|
--daemon \
|
|
;
|
|
sleep 5
|
|
./tools/test_relay_api.sh http://localhost:9000
|
|
echo '*/quit' >/tmp/weechat-test-api/weechat_fifo_*
|
|
|
|
- name: Code coverage
|
|
if: ${{ matrix.config.name == 'gcc_coverage' }}
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
run: |
|
|
cd build-tmp-*
|
|
lcov --directory . --capture --output-file coverage.info
|
|
lcov --remove coverage.info '/usr/*' --output-file coverage.info
|
|
lcov --list coverage.info
|
|
bash <(curl -s https://codecov.io/bash) -f coverage.info || echo 'Codecov error'
|
|
|
|
tests_macos:
|
|
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- macos-12
|
|
config:
|
|
- { name: "gcc", cc: "gcc", cxx: "g++" }
|
|
- { name: "clang", cc: "clang", cxx: "clang++" }
|
|
|
|
name: "${{ matrix.os }}: ${{ matrix.config.name }}"
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Setup Homebrew
|
|
id: setup-homebrew
|
|
uses: Homebrew/actions/setup-homebrew@master
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
brew update
|
|
# temporary fix, see: https://github.com/actions/setup-python/issues/577
|
|
rm -f \
|
|
/usr/local/bin/2to3 \
|
|
/usr/local/bin/idle3 \
|
|
/usr/local/bin/pydoc3 \
|
|
/usr/local/bin/python3 \
|
|
/usr/local/bin/python3-config \
|
|
/usr/local/bin/2to3-3.11 \
|
|
/usr/local/bin/idle3.11 \
|
|
/usr/local/bin/pydoc3.11 \
|
|
/usr/local/bin/python3.11 \
|
|
/usr/local/bin/python3.11-config \
|
|
;
|
|
brew install asciidoctor cjson guile lua pkg-config ruby
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
env:
|
|
CC: ${{ matrix.config.cc }}
|
|
CXX: ${{ matrix.config.cxx }}
|
|
run: |
|
|
mkdir build-tmp && cd build-tmp
|
|
cmake .. -DENABLE_MAN=ON -DENABLE_DOC=ON -DENABLE_DOC_INCOMPLETE=ON -DENABLE_PHP=OFF
|
|
make VERBOSE=1 -j2
|
|
sudo make install
|
|
|
|
- name: Run WeeChat
|
|
env:
|
|
TERM: xterm-256color
|
|
run: |
|
|
weechat --help
|
|
weechat-curses --help
|
|
weechat --version
|
|
weechat --build-info
|
|
weechat --colors
|
|
weechat --license
|
|
weechat --run-command "/debug dirs;/debug libs" --run-command "/quit"
|
|
|
|
build_debian:
|
|
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-22.04
|
|
|
|
name: "${{ matrix.os }}: build Debian"
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update -qq
|
|
sudo apt-get --yes --no-install-recommends install ${{ env.WEECHAT_DEPENDENCIES }}
|
|
|
|
- name: Test Debian patches
|
|
run: ./tools/build_debian.sh test-patches
|
|
|
|
- name: Build Debian packages
|
|
run: ./tools/build_debian.sh devel ubuntu/jammy
|
|
|
|
- name: Install Debian packages
|
|
run: sudo dpkg -i ../weechat-devel*.deb
|
|
|
|
- name: Run WeeChat
|
|
env:
|
|
TERM: xterm-256color
|
|
run: |
|
|
weechat --help
|
|
weechat-curses --help
|
|
weechat --version
|
|
weechat --build-info
|
|
weechat --run-command "/debug dirs;/debug libs" --run-command "/quit"
|
|
|
|
codeql-analysis:
|
|
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-22.04
|
|
|
|
name: "${{ matrix.os }}: CodeQL"
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update -qq
|
|
sudo apt-get --yes --no-install-recommends install ${{ env.WEECHAT_DEPENDENCIES }}
|
|
# uninstall php imagick as is causes a crash when loading php plugin (see #2009)
|
|
sudo apt-get --yes purge php8.1-imagick
|
|
sudo -H pip3 install --ignore-installed msgcheck
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v3
|
|
with:
|
|
languages: cpp
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@v3
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v3
|
|
with:
|
|
category: "/language:cpp"
|