2023-02-18 02:47:22 -07:00
|
|
|
name: test
|
2020-12-05 10:02:00 -07:00
|
|
|
on:
|
|
|
|
push:
|
2023-09-09 04:37:32 -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]+'
|
2024-03-27 06:14:25 -07:00
|
|
|
workflow_dispatch:
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2021-12-25 09:07:52 -07:00
|
|
|
concurrency:
|
2024-03-10 05:49:00 -07:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
2021-12-25 09:07:52 -07:00
|
|
|
|
2023-01-15 04:25:28 -07:00
|
|
|
env:
|
2023-05-15 14:21:04 -07:00
|
|
|
ASAN_OPTIONS: detect_leaks=1:check_initialization_order=1:log_path=${{ github.workspace }}/build/log/asan:intercept_tls_get_addr=0
|
2023-02-12 10:08:37 -07:00
|
|
|
BIN_DIR: ${{ github.workspace }}/bin
|
|
|
|
BUILD_DIR: ${{ github.workspace }}/build
|
|
|
|
INSTALL_PREFIX: ${{ github.workspace }}/nvim-install
|
|
|
|
LOG_DIR: ${{ github.workspace }}/build/log
|
|
|
|
NVIM_LOG_FILE: ${{ github.workspace }}/build/.nvimlog
|
|
|
|
TSAN_OPTIONS: log_path=${{ github.workspace }}/build/log/tsan
|
|
|
|
VALGRIND_LOG: ${{ github.workspace }}/build/log/valgrind-%p.log
|
2023-01-15 04:25:28 -07:00
|
|
|
# TEST_FILE: test/functional/core/startup_spec.lua
|
|
|
|
# TEST_FILTER: foo
|
|
|
|
|
2020-11-12 11:22:14 -07:00
|
|
|
jobs:
|
2021-12-31 09:13:23 -07:00
|
|
|
lint:
|
2022-10-17 10:40:54 -07:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-26 08:57:47 -07:00
|
|
|
timeout-minutes: 10
|
2023-10-08 14:05:23 -07:00
|
|
|
env:
|
|
|
|
CC: clang
|
2021-12-31 09:13:23 -07:00
|
|
|
steps:
|
2023-09-04 05:51:40 -07:00
|
|
|
- uses: actions/checkout@v4
|
2023-11-30 04:05:13 -07:00
|
|
|
- uses: ./.github/actions/setup
|
2023-04-30 22:56:17 -07:00
|
|
|
|
|
|
|
- name: Install stylua
|
2022-05-20 20:41:57 -07:00
|
|
|
run: |
|
2023-11-24 06:11:26 -07:00
|
|
|
wget --directory-prefix="$BIN_DIR" https://github.com/JohnnyMorganz/StyLua/releases/latest/download/stylua-linux-x86_64.zip
|
2023-04-30 22:56:17 -07:00
|
|
|
(cd "$BIN_DIR"; unzip stylua*.zip)
|
2022-05-20 20:41:57 -07:00
|
|
|
|
2022-08-14 06:56:15 -07:00
|
|
|
- name: Build third-party deps
|
2023-02-11 05:27:43 -07:00
|
|
|
run: |
|
2023-03-09 04:27:20 -07:00
|
|
|
cmake -S cmake.deps -B .deps -G Ninja
|
|
|
|
cmake --build .deps
|
2022-08-14 06:56:15 -07:00
|
|
|
|
2023-09-27 08:53:06 -07:00
|
|
|
- run: cmake -B build -G Ninja -D CI_LINT=ON
|
2023-03-04 09:55:42 -07:00
|
|
|
|
2022-08-14 06:56:15 -07:00
|
|
|
- if: "!cancelled()"
|
2022-11-04 05:26:12 -07:00
|
|
|
name: Determine if run should be aborted
|
|
|
|
id: abort_job
|
|
|
|
run: echo "status=${{ job.status }}" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2023-04-28 16:48:14 -07:00
|
|
|
name: stylua
|
|
|
|
run: cmake --build build --target lintlua-stylua
|
2022-08-14 06:56:15 -07:00
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2023-01-16 03:11:48 -07:00
|
|
|
name: luacheck
|
2023-02-18 09:43:39 -07:00
|
|
|
run: cmake --build build --target lintlua-luacheck
|
2022-08-14 06:56:15 -07:00
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-08-14 06:56:15 -07:00
|
|
|
name: lintsh
|
2023-02-11 05:27:43 -07:00
|
|
|
run: cmake --build build --target lintsh
|
2022-08-14 06:56:15 -07:00
|
|
|
|
2023-02-18 02:47:22 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
|
|
|
name: clint.py
|
|
|
|
run: cmake --build build --target lintc-clint
|
|
|
|
|
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2023-09-27 08:53:06 -07:00
|
|
|
name: clang-tidy
|
2023-10-26 13:30:00 -07:00
|
|
|
run: cmake --build build --target lintc-clang-tidy
|
2023-02-18 02:47:22 -07:00
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-05-20 20:41:57 -07:00
|
|
|
name: uncrustify
|
2023-04-29 04:39:36 -07:00
|
|
|
run: cmake --build build --target lintc-uncrustify
|
2022-08-14 05:49:10 -07:00
|
|
|
|
2023-10-06 08:43:23 -07:00
|
|
|
clang-analyzer:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
timeout-minutes: 20
|
2023-10-08 14:05:23 -07:00
|
|
|
env:
|
|
|
|
CC: clang
|
2023-10-06 08:43:23 -07:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2023-11-30 04:05:13 -07:00
|
|
|
- uses: ./.github/actions/setup
|
2023-10-06 08:43:23 -07:00
|
|
|
- name: Build third-party deps
|
|
|
|
run: |
|
2023-10-22 04:30:32 -07:00
|
|
|
cmake -S cmake.deps --preset ci
|
2023-10-06 08:43:23 -07:00
|
|
|
cmake --build .deps
|
2023-10-22 04:30:32 -07:00
|
|
|
cmake --preset ci
|
2023-10-06 08:43:23 -07:00
|
|
|
- run: cmake --build build --target clang-analyzer
|
|
|
|
|
2022-03-07 04:38:47 -07:00
|
|
|
posix:
|
2024-07-14 08:24:40 -07:00
|
|
|
name: ${{ matrix.build.os }} ${{ matrix.build.flavor }} ${{ matrix.build.cc }} ${{ matrix.test }}
|
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:
|
2024-07-14 08:24:40 -07:00
|
|
|
# The `os` field is not needed to differentiate between the different
|
|
|
|
# matrix builds. It is needed to not change the required checks (which
|
|
|
|
# uses jobs names) each time we bump the runner version. It may be
|
|
|
|
# possible to remove if we e.g. start using `-latest` runner versions
|
|
|
|
# or if github introduces a wildcard for required checks in the future.
|
2023-10-20 06:12:37 -07:00
|
|
|
build:
|
|
|
|
[
|
2024-07-14 08:24:40 -07:00
|
|
|
{ runner: ubuntu-22.04, os: ubuntu, flavor: asan, cc: clang, flags: -D ENABLE_ASAN_UBSAN=ON },
|
|
|
|
{ runner: ubuntu-22.04, os: ubuntu, flavor: tsan, cc: clang, flags: -D ENABLE_TSAN=ON },
|
|
|
|
{ runner: ubuntu-22.04, os: ubuntu, cc: gcc },
|
|
|
|
{ runner: macos-12, os: macos, flavor: 12, cc: clang, flags: -D CMAKE_FIND_FRAMEWORK=NEVER, deps_flags: -D CMAKE_FIND_FRAMEWORK=NEVER },
|
|
|
|
{ runner: macos-14, os: macos, cc: clang, flags: -D CMAKE_FIND_FRAMEWORK=NEVER, deps_flags: -D CMAKE_FIND_FRAMEWORK=NEVER },
|
|
|
|
{ runner: ubuntu-22.04, os: ubuntu, flavor: puc-lua, cc: gcc, deps_flags: -D USE_BUNDLED_LUAJIT=OFF -D USE_BUNDLED_LUA=ON, flags: -D PREFER_LUA=ON },
|
2023-10-20 06:12:37 -07:00
|
|
|
]
|
|
|
|
test: [unittest, functionaltest, oldtest]
|
|
|
|
exclude:
|
|
|
|
- test: unittest
|
|
|
|
build: { flavor: tsan }
|
|
|
|
- test: unittest
|
2023-11-12 13:40:24 -07:00
|
|
|
build: { flavor: puc-lua }
|
2023-10-20 06:12:37 -07:00
|
|
|
- test: oldtest
|
|
|
|
build: { flavor: tsan }
|
|
|
|
runs-on: ${{ matrix.build.runner }}
|
2021-07-24 01:23:15 -07:00
|
|
|
timeout-minutes: 45
|
2020-11-12 11:22:14 -07:00
|
|
|
env:
|
2023-10-20 06:12:37 -07:00
|
|
|
CC: ${{ matrix.build.cc }}
|
2020-11-12 11:22:14 -07:00
|
|
|
steps:
|
2023-09-04 05:51:40 -07:00
|
|
|
- uses: actions/checkout@v4
|
2023-11-30 04:05:13 -07:00
|
|
|
- uses: ./.github/actions/setup
|
|
|
|
with:
|
|
|
|
install_flags: "--test"
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2023-02-11 10:16:04 -07:00
|
|
|
- name: Create log dir
|
2023-02-12 05:09:46 -07:00
|
|
|
run: mkdir -p "$LOG_DIR"
|
2023-02-11 10:16:04 -07:00
|
|
|
|
2023-10-20 06:12:37 -07:00
|
|
|
- if: ${{ matrix.test != 'unittest' }}
|
|
|
|
name: Set up interpreter packages
|
2023-02-12 03:50:08 -07:00
|
|
|
run: |
|
|
|
|
echo "Install neovim RubyGem."
|
|
|
|
gem install --no-document --bindir "$BIN_DIR" --user-install --pre neovim
|
|
|
|
|
|
|
|
echo "Install neovim npm package"
|
|
|
|
npm install -g neovim
|
|
|
|
npm link neovim
|
|
|
|
|
2023-10-20 11:36:23 -07:00
|
|
|
sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log"
|
|
|
|
perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION'
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2022-06-27 03:08:59 -07:00
|
|
|
- name: Build third-party deps
|
2023-02-11 05:27:43 -07:00
|
|
|
run: |
|
2024-02-17 03:35:25 -07:00
|
|
|
cmake -S cmake.deps --preset ci -D CMAKE_BUILD_TYPE=Debug ${{ matrix.build.deps_flags }}
|
2023-03-09 04:27:20 -07:00
|
|
|
cmake --build .deps
|
2020-11-12 20:00:04 -07:00
|
|
|
|
2022-02-14 02:17:25 -07:00
|
|
|
- name: Build
|
2023-02-11 05:27:43 -07:00
|
|
|
run: |
|
2024-02-17 03:35:25 -07:00
|
|
|
cmake --preset ci -D CMAKE_BUILD_TYPE=Debug -D CMAKE_INSTALL_PREFIX:PATH=$INSTALL_PREFIX ${{ matrix.build.flags }}
|
2023-02-11 05:27:43 -07:00
|
|
|
cmake --build build
|
|
|
|
|
2023-10-20 06:12:37 -07:00
|
|
|
- name: ${{ matrix.test }}
|
2023-02-16 20:06:56 -07:00
|
|
|
timeout-minutes: 20
|
2023-10-20 06:12:37 -07:00
|
|
|
run: make ${{ matrix.test }}
|
2022-02-14 02:17:25 -07:00
|
|
|
|
2023-10-20 06:12:37 -07:00
|
|
|
- name: Install
|
2023-02-12 03:50:08 -07:00
|
|
|
run: |
|
2023-10-20 06:12:37 -07:00
|
|
|
cmake --install build
|
2023-02-12 05:09:46 -07:00
|
|
|
"$INSTALL_PREFIX/bin/nvim" --version
|
|
|
|
if ! "$INSTALL_PREFIX/bin/nvim" -u NONE -e -c ':help' -c ':qall'; then
|
2023-02-12 03:50:08 -07:00
|
|
|
echo "Running ':help' in the installed nvim failed."
|
|
|
|
echo "Maybe the helptags have not been generated properly."
|
|
|
|
echo 'Failed running :help'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check that all runtime files were installed
|
2023-03-07 07:00:51 -07:00
|
|
|
for file in $(git -C runtime ls-files '*.vim' '*.ps' '*.dict' '*.py' '*.tutor' '*.awk' '*.sh' '*.bat'); do
|
2023-02-12 03:50:08 -07:00
|
|
|
if ! test -e "$INSTALL_PREFIX/share/nvim/runtime/$file"; then
|
2023-03-07 07:00:51 -07:00
|
|
|
printf "It appears that %s is not installed." "$file"
|
2023-02-12 03:50:08 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Check that generated syntax file has function names, #5060.
|
|
|
|
genvimsynf=syntax/vim/generated.vim
|
|
|
|
gpat='syn keyword vimFuncName .*eval'
|
2023-02-12 05:09:46 -07:00
|
|
|
if ! grep -q "$gpat" "$INSTALL_PREFIX/share/nvim/runtime/$genvimsynf"; then
|
2023-02-12 03:50:08 -07:00
|
|
|
echo "It appears that $genvimsynf does not contain $gpat."
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-11-13 08:51:48 -07:00
|
|
|
|
2023-10-20 06:12:37 -07:00
|
|
|
- if: '!cancelled()'
|
2023-02-11 10:16:04 -07:00
|
|
|
name: Show logs
|
|
|
|
run: cat $(find "$LOG_DIR" -type f)
|
|
|
|
|
2020-12-16 23:06:07 -07:00
|
|
|
windows:
|
2024-03-03 04:01:37 -07:00
|
|
|
uses: ./.github/workflows/test_windows.yml
|
2023-09-03 03:06:32 -07:00
|
|
|
|
2023-09-27 08:53:06 -07:00
|
|
|
# This job tests the following things:
|
|
|
|
# - Check if Release, MinSizeRel and RelWithDebInfo compiles correctly.
|
|
|
|
# - Test the above build types with the GCC compiler specifically.
|
|
|
|
# Empirically the difference in warning levels between GCC and other
|
|
|
|
# compilers is particularly big.
|
|
|
|
# - Test if the build works with multi-config generators. We mostly use
|
|
|
|
# single-config generators so it's nice to have a small sanity check for
|
|
|
|
# multi-config.
|
|
|
|
build-types:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
timeout-minutes: 10
|
2023-10-08 14:05:23 -07:00
|
|
|
env:
|
|
|
|
CC: gcc
|
2023-09-27 08:53:06 -07:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2023-11-30 04:05:13 -07:00
|
|
|
- uses: ./.github/actions/setup
|
2023-09-27 08:53:06 -07:00
|
|
|
|
|
|
|
- name: Build third-party deps
|
|
|
|
run: |
|
|
|
|
cmake -S cmake.deps -B .deps -G "Ninja Multi-Config"
|
|
|
|
cmake --build .deps
|
|
|
|
|
|
|
|
- name: Configure
|
2023-10-22 04:30:32 -07:00
|
|
|
run: cmake --preset ci -G "Ninja Multi-Config"
|
2023-09-27 08:53:06 -07:00
|
|
|
|
|
|
|
- name: Release
|
|
|
|
run: cmake --build build --config Release
|
|
|
|
|
|
|
|
- name: RelWithDebInfo
|
|
|
|
run: cmake --build build --config RelWithDebInfo
|
|
|
|
|
|
|
|
- name: MinSizeRel
|
|
|
|
run: cmake --build build --config MinSizeRel
|
|
|
|
|
2023-09-03 03:06:32 -07:00
|
|
|
with-external-deps:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
timeout-minutes: 10
|
2023-10-08 14:05:23 -07:00
|
|
|
env:
|
|
|
|
CC: gcc
|
2023-09-03 03:06:32 -07:00
|
|
|
steps:
|
2023-09-04 05:51:40 -07:00
|
|
|
- uses: actions/checkout@v4
|
2023-11-30 04:05:13 -07:00
|
|
|
- uses: ./.github/actions/setup
|
2023-09-03 03:06:32 -07:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo add-apt-repository ppa:neovim-ppa/stable
|
|
|
|
sudo apt-get install -y \
|
|
|
|
libluajit-5.1-dev \
|
|
|
|
libunibilium-dev \
|
|
|
|
libuv1-dev \
|
|
|
|
lua-filesystem \
|
|
|
|
lua-lpeg \
|
|
|
|
luajit \
|
|
|
|
lua-luv-dev
|
|
|
|
# libtree-sitter-dev \
|
|
|
|
|
|
|
|
# Remove comments from packages once we start using these external
|
|
|
|
# dependencies.
|
|
|
|
|
|
|
|
- name: Build third-party deps
|
|
|
|
run: |
|
|
|
|
cmake -S cmake.deps --preset external_deps
|
|
|
|
cmake --build .deps
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cmake --preset ci
|
|
|
|
cmake --build build
|