2020-11-16 19:28:01 -07:00
|
|
|
name: CI
|
2020-12-05 10:02:00 -07:00
|
|
|
on:
|
|
|
|
push:
|
2021-10-31 17:03:24 -07:00
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'release-[0-9]+.[0-9]+'
|
2020-12-05 10:02:00 -07:00
|
|
|
pull_request:
|
2021-05-05 06:02:22 -07:00
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'release-[0-9]+.[0-9]+'
|
2022-02-21 02:12:07 -07:00
|
|
|
paths-ignore:
|
|
|
|
- 'runtime/doc/*'
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2021-12-25 09:07:52 -07:00
|
|
|
# Cancel any in-progress CI runs for a PR if it is updated
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-11-12 11:22:14 -07:00
|
|
|
jobs:
|
2021-12-31 09:13:23 -07:00
|
|
|
lint:
|
2022-03-07 04:38:47 -07:00
|
|
|
# This job tests two things: it lints the code but also builds neovim using
|
|
|
|
# system dependencies instead of bundled dependencies. This is to make sure
|
|
|
|
# we are able to build neovim without pigeonholing ourselves into specifics
|
|
|
|
# of the bundled dependencies.
|
|
|
|
|
2022-05-15 08:18:38 -07:00
|
|
|
if: (github.event_name == 'pull_request' && github.base_ref == 'master') || (github.event_name == 'push' && github.ref == 'refs/heads/master')
|
2021-12-31 09:13:23 -07:00
|
|
|
runs-on: ubuntu-20.04
|
2022-02-26 08:57:47 -07:00
|
|
|
timeout-minutes: 10
|
2021-12-31 09:13:23 -07:00
|
|
|
env:
|
|
|
|
CC: gcc
|
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-31 09:13:23 -07:00
|
|
|
|
|
|
|
- name: Setup common environment variables
|
|
|
|
run: ./.github/workflows/env.sh lint
|
|
|
|
|
|
|
|
- name: Install apt packages
|
|
|
|
run: |
|
2022-02-19 17:11:28 -07:00
|
|
|
sudo add-apt-repository ppa:neovim-ppa/stable
|
2021-12-31 09:13:23 -07:00
|
|
|
sudo apt-get update
|
2022-02-19 17:11:28 -07:00
|
|
|
sudo apt-get install -y \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
build-essential \
|
|
|
|
cmake \
|
|
|
|
flake8 \
|
|
|
|
gettext \
|
|
|
|
libluajit-5.1-dev \
|
|
|
|
libmsgpack-dev \
|
|
|
|
libtermkey-dev \
|
|
|
|
libtool-bin \
|
|
|
|
libtree-sitter-dev \
|
|
|
|
libunibilium-dev \
|
|
|
|
libuv1-dev \
|
|
|
|
libvterm-dev \
|
|
|
|
locales \
|
|
|
|
lua-busted \
|
|
|
|
lua-check \
|
|
|
|
lua-filesystem \
|
|
|
|
lua-inspect \
|
|
|
|
lua-lpeg \
|
|
|
|
lua-luv-dev \
|
|
|
|
lua-nvim \
|
|
|
|
luajit \
|
|
|
|
ninja-build \
|
|
|
|
pkg-config
|
2021-12-31 09:13:23 -07:00
|
|
|
|
2022-05-20 20:41:57 -07:00
|
|
|
|
|
|
|
- name: Cache uncrustify
|
|
|
|
id: cache-uncrustify
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ${{ env.CACHE_UNCRUSTIFY }}
|
|
|
|
key: ${{ env.UNCRUSTIFY_VERSION }}
|
|
|
|
|
|
|
|
- name: Clone uncrustify
|
|
|
|
if: steps.cache-uncrustify.outputs.cache-hit != 'true'
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: uncrustify/uncrustify
|
|
|
|
ref: ${{ env.UNCRUSTIFY_VERSION }}
|
|
|
|
path: uncrustify
|
|
|
|
|
|
|
|
- name: Install uncrustify
|
|
|
|
if: steps.cache-uncrustify.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
source_dir=uncrustify
|
|
|
|
build_dir=uncrustify/build
|
|
|
|
cmake -S $source_dir -B $build_dir -G Ninja -DCMAKE_BUILD_TYPE=Release
|
|
|
|
cmake --build $build_dir
|
|
|
|
mkdir -p $HOME/.cache
|
|
|
|
cp $build_dir/uncrustify ${{ env.CACHE_UNCRUSTIFY }}
|
|
|
|
|
2022-02-19 17:11:28 -07:00
|
|
|
- name: Cache artifacts
|
2022-05-20 20:45:10 -07:00
|
|
|
uses: actions/cache@v3
|
2021-12-31 09:13:23 -07:00
|
|
|
with:
|
|
|
|
path: |
|
2022-02-27 06:18:48 -07:00
|
|
|
${{ env.CACHE_NVIM_DEPS_DIR }}
|
2022-06-27 03:08:59 -07:00
|
|
|
key: lint-${{ hashFiles('cmake/*', '**/CMakeLists.txt', '!cmake.deps/**CMakeLists.txt') }}-${{ github.base_ref }}
|
2021-12-31 09:13:23 -07:00
|
|
|
|
2022-05-20 20:41:57 -07:00
|
|
|
- if: "!cancelled()"
|
|
|
|
name: uncrustify
|
|
|
|
run: |
|
2022-05-28 17:00:25 -07:00
|
|
|
${{ env.CACHE_UNCRUSTIFY }} -c ./src/uncrustify.cfg -q --replace --no-backup $(find ./src/nvim -name "*.[ch]")
|
2022-08-14 05:49:10 -07:00
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: suggester / uncrustify
|
|
|
|
uses: reviewdog/action-suggester@v1
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
tool_name: uncrustify
|
|
|
|
cleanup: false
|
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: check uncrustify
|
|
|
|
run: |
|
2022-05-28 17:00:25 -07:00
|
|
|
git diff --color --exit-code
|
2022-05-20 20:41:57 -07:00
|
|
|
|
2022-08-14 06:08:38 -07:00
|
|
|
- name: Build third-party deps
|
|
|
|
run: ./ci/before_script.sh
|
|
|
|
|
|
|
|
- name: Build nvim
|
|
|
|
run: ./ci/run_tests.sh build_nvim
|
|
|
|
|
|
|
|
- if: "!cancelled()"
|
2022-08-14 06:54:52 -07:00
|
|
|
name: lintc
|
|
|
|
run: make lintc
|
2022-08-14 06:08:38 -07:00
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: lintstylua
|
|
|
|
uses: JohnnyMorganz/stylua-action@1.0.0
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
args: --check runtime/
|
|
|
|
|
2022-02-14 02:17:25 -07:00
|
|
|
- if: "!cancelled()"
|
2022-06-09 08:09:24 -07:00
|
|
|
name: lintlua
|
2022-07-11 07:38:50 -07:00
|
|
|
run: make lintlua
|
2022-02-14 02:17:25 -07:00
|
|
|
|
|
|
|
- if: "!cancelled()"
|
2022-06-09 08:09:24 -07:00
|
|
|
name: lintpy
|
2022-07-11 07:38:50 -07:00
|
|
|
run: make lintpy
|
2022-02-14 02:17:25 -07:00
|
|
|
|
|
|
|
- if: "!cancelled()"
|
2022-06-09 08:09:24 -07:00
|
|
|
name: lintsh
|
2022-07-11 07:38:50 -07:00
|
|
|
run: make lintsh
|
2022-02-14 02:17:25 -07:00
|
|
|
|
|
|
|
- if: "!cancelled()"
|
2022-03-05 10:07:46 -07:00
|
|
|
name: check-single-includes
|
2022-07-11 07:38:50 -07:00
|
|
|
run: make check-single-includes
|
2021-12-31 09:13:23 -07:00
|
|
|
|
|
|
|
- name: Cache dependencies
|
|
|
|
run: ./ci/before_cache.sh
|
|
|
|
|
2022-03-07 04:38:47 -07:00
|
|
|
posix:
|
2021-09-24 06:01:50 -07:00
|
|
|
name: ${{ matrix.runner }} ${{ matrix.flavor }} (cc=${{ matrix.cc }})
|
2020-11-14 19:03:26 -07:00
|
|
|
strategy:
|
2020-12-30 07:52:42 -07:00
|
|
|
fail-fast: false
|
2020-11-14 19:03:26 -07:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- flavor: asan
|
2021-12-31 15:24:48 -07:00
|
|
|
cc: clang-13
|
2020-11-16 19:28:01 -07:00
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
2020-11-14 19:14:30 -07:00
|
|
|
- flavor: tsan
|
2021-12-31 15:24:48 -07:00
|
|
|
cc: clang-13
|
2020-11-16 19:28:01 -07:00
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
2022-05-05 17:49:26 -07:00
|
|
|
- flavor: uchar
|
|
|
|
cc: gcc
|
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
2020-11-16 19:28:01 -07:00
|
|
|
- cc: clang
|
2022-07-18 09:39:41 -07:00
|
|
|
runner: macos-11
|
2021-09-24 06:01:30 -07:00
|
|
|
os: osx
|
2022-03-07 04:38:47 -07:00
|
|
|
|
2022-06-08 15:12:40 -07:00
|
|
|
# functionaltest-lua is our dumping ground for non-mainline configurations.
|
2022-03-07 04:38:47 -07:00
|
|
|
# 1. Check that the tests pass with PUC Lua instead of LuaJIT.
|
|
|
|
# 2. Use as oldest/minimum versions of dependencies/build tools we
|
|
|
|
# still explicitly support so we don't accidentally rely on
|
|
|
|
# features that is only available on later versions.
|
2022-06-08 15:12:40 -07:00
|
|
|
# 3. No treesitter parsers installed.
|
2022-02-15 05:51:56 -07:00
|
|
|
- flavor: functionaltest-lua
|
|
|
|
cc: gcc
|
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
|
|
|
cmake: minimum_required
|
2020-11-16 19:28:01 -07:00
|
|
|
runs-on: ${{ matrix.runner }}
|
2021-07-24 01:23:15 -07:00
|
|
|
timeout-minutes: 45
|
2020-11-12 11:22:14 -07:00
|
|
|
env:
|
2020-11-14 19:03:26 -07:00
|
|
|
CC: ${{ matrix.cc }}
|
2020-11-16 19:28:01 -07:00
|
|
|
CI_OS_NAME: ${{ matrix.os }}
|
2020-11-12 11:22:14 -07:00
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2021-10-26 11:01:18 -07:00
|
|
|
- name: Setup common environment variables
|
2020-11-14 19:03:26 -07:00
|
|
|
run: ./.github/workflows/env.sh ${{ matrix.flavor }}
|
2020-11-12 11:22:14 -07:00
|
|
|
|
|
|
|
- name: Install apt packages
|
2020-11-16 19:28:01 -07:00
|
|
|
if: matrix.os == 'linux'
|
2020-11-12 11:22:14 -07:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2022-08-11 02:07:38 -07:00
|
|
|
sudo apt-get install -y autoconf automake build-essential cmake cpanminus cscope gcc-multilib gdb gettext language-pack-tr libtool-bin locales ninja-build pkg-config python3 python3-pip python3-setuptools unzip valgrind xclip
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2022-02-15 05:51:56 -07:00
|
|
|
- name: Install minimum required version of cmake
|
|
|
|
if: matrix.cmake == 'minimum_required'
|
|
|
|
env:
|
|
|
|
CMAKE_URL: 'https://cmake.org/files/v3.10/cmake-3.10.0-Linux-x86_64.sh'
|
|
|
|
CMAKE_VERSION: '3.10.0'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
curl --retry 5 --silent --show-error --fail -o /tmp/cmake-installer.sh "$CMAKE_URL"
|
|
|
|
mkdir -p "$HOME/.local/bin" /opt/cmake-custom
|
|
|
|
chmod a+x /tmp/cmake-installer.sh
|
|
|
|
/tmp/cmake-installer.sh --prefix=/opt/cmake-custom --skip-license
|
|
|
|
ln -sfn /opt/cmake-custom/bin/cmake "$HOME/.local/bin/cmake"
|
|
|
|
cmake_version="$(cmake --version | head -1)"
|
|
|
|
echo "$cmake_version" | grep -qF "cmake version $CMAKE_VERSION" || {
|
|
|
|
echo "Unexpected CMake version: $cmake_version"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2020-11-12 11:22:14 -07:00
|
|
|
- name: Install new clang
|
2020-11-14 19:14:30 -07:00
|
|
|
if: matrix.flavor == 'asan' || matrix.flavor == 'tsan'
|
2021-04-18 19:08:53 -07:00
|
|
|
run: |
|
|
|
|
wget https://apt.llvm.org/llvm.sh
|
|
|
|
chmod a+x llvm.sh
|
2021-12-31 15:24:48 -07:00
|
|
|
sudo ./llvm.sh 13
|
2021-04-18 19:08:53 -07:00
|
|
|
rm llvm.sh
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2020-11-16 19:57:46 -07:00
|
|
|
- name: Install brew packages
|
|
|
|
if: matrix.os == 'osx'
|
|
|
|
run: |
|
2022-03-07 07:34:12 -07:00
|
|
|
brew update --quiet
|
2022-08-11 02:07:38 -07:00
|
|
|
brew install automake cpanminus ninja
|
2020-11-16 19:57:46 -07:00
|
|
|
|
2020-11-12 11:22:14 -07:00
|
|
|
- name: Setup interpreter packages
|
2022-02-14 02:17:25 -07:00
|
|
|
run: ./ci/install.sh
|
2020-11-12 11:22:14 -07:00
|
|
|
|
|
|
|
- name: Cache dependencies
|
2022-05-20 20:45:10 -07:00
|
|
|
uses: actions/cache@v3
|
2020-11-12 11:22:14 -07:00
|
|
|
with:
|
2020-11-13 07:54:55 -07:00
|
|
|
path: |
|
|
|
|
${{ env.CACHE_NVIM_DEPS_DIR }}
|
2022-06-27 03:08:59 -07:00
|
|
|
key: ${{ matrix.runner }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'cmake.deps/**', '**/CMakeLists.txt') }}-${{ github.base_ref }}
|
2020-11-12 20:00:04 -07:00
|
|
|
|
2022-06-27 03:08:59 -07:00
|
|
|
- name: Build third-party deps
|
2020-11-12 20:00:04 -07:00
|
|
|
run: ./ci/before_script.sh
|
|
|
|
|
2022-02-14 02:17:25 -07:00
|
|
|
- name: Build
|
2022-03-05 10:07:46 -07:00
|
|
|
run: ./ci/run_tests.sh build_nvim
|
2022-02-14 02:17:25 -07:00
|
|
|
|
|
|
|
- if: matrix.flavor != 'tsan' && matrix.flavor != 'functionaltest-lua' && !cancelled()
|
|
|
|
name: Unittests
|
|
|
|
run: ./ci/run_tests.sh unittests
|
|
|
|
|
|
|
|
- if: matrix.flavor != 'tsan' && !cancelled()
|
|
|
|
name: Functionaltests
|
|
|
|
run: ./ci/run_tests.sh functionaltests
|
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: Oldtests
|
|
|
|
run: ./ci/run_tests.sh oldtests
|
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: Install nvim
|
|
|
|
run: ./ci/run_tests.sh install_nvim
|
2020-11-13 08:51:48 -07:00
|
|
|
|
|
|
|
- name: Cache dependencies
|
|
|
|
run: ./ci/before_cache.sh
|
2020-12-16 23:06:07 -07:00
|
|
|
|
|
|
|
windows:
|
2021-10-23 18:38:58 -07:00
|
|
|
runs-on: windows-2019
|
2022-02-26 08:57:47 -07:00
|
|
|
timeout-minutes: 45
|
2020-12-16 23:06:07 -07:00
|
|
|
env:
|
2021-04-20 19:57:41 -07:00
|
|
|
DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }}
|
|
|
|
DEPS_PREFIX: ${{ format('{0}/nvim-deps/usr', github.workspace) }}
|
2022-07-17 15:07:35 -07:00
|
|
|
CMAKE_BUILD_TYPE: "RelWithDebInfo"
|
2022-05-15 15:59:58 -07:00
|
|
|
name: windows (MSVC_64)
|
2020-12-16 23:06:07 -07:00
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-16 23:06:07 -07:00
|
|
|
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/cache@v3
|
2020-12-16 23:06:07 -07:00
|
|
|
with:
|
2021-04-20 19:57:41 -07:00
|
|
|
path: ${{ env.DEPS_BUILD_DIR }}
|
2022-06-27 03:08:59 -07:00
|
|
|
key: ${{ hashFiles('cmake.deps\**') }}
|
2020-12-16 23:06:07 -07:00
|
|
|
|
2022-07-17 15:07:35 -07:00
|
|
|
- name: Build deps
|
|
|
|
run: .\ci\build.ps1 -BuildDeps
|
|
|
|
|
|
|
|
- name: Build nvim
|
|
|
|
run: .\ci\build.ps1 -Build
|
|
|
|
|
|
|
|
- name: Install test deps
|
|
|
|
continue-on-error: false
|
|
|
|
run: .\ci\build.ps1 -EnsureTestDeps
|
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: Run tests
|
|
|
|
run: .\ci\build.ps1 -Test
|
|
|
|
|
|
|
|
- if: "!cancelled()"
|
|
|
|
name: Run old tests
|
|
|
|
run: .\ci\build.ps1 -TestOld
|