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:
|
2022-10-06 09:45:42 -07:00
|
|
|
- 'contrib/**'
|
2020-11-12 11:22:14 -07:00
|
|
|
|
2021-12-25 09:07:52 -07:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-01-15 04:25:28 -07:00
|
|
|
env:
|
|
|
|
UNCRUSTIFY_VERSION: uncrustify-0.75.0
|
|
|
|
# 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-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')
|
2022-10-17 10:40:54 -07:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-26 08:57:47 -07:00
|
|
|
timeout-minutes: 10
|
2021-12-31 09:13:23 -07:00
|
|
|
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-12-05 03:58:13 -07:00
|
|
|
./.github/scripts/install_deps_ubuntu.sh
|
|
|
|
sudo apt-get install -y lua-check
|
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
|
2023-02-07 06:43:45 -07:00
|
|
|
cmake -S $source_dir -B $build_dir -G Ninja -D CMAKE_BUILD_TYPE=Release
|
2022-05-20 20:41:57 -07:00
|
|
|
cmake --build $build_dir
|
2023-02-07 06:43:45 -07:00
|
|
|
mkdir -p $CACHE_DIR
|
2022-05-20 20:41:57 -07:00
|
|
|
cp $build_dir/uncrustify ${{ env.CACHE_UNCRUSTIFY }}
|
|
|
|
|
2022-12-05 03:57:52 -07:00
|
|
|
- uses: ./.github/actions/cache
|
2021-12-31 09:13:23 -07:00
|
|
|
|
2022-08-14 06:56:15 -07:00
|
|
|
- name: Build third-party deps
|
2023-02-11 05:27:43 -07:00
|
|
|
run: |
|
|
|
|
cmake -S cmake.deps -B "${DEPS_BUILD_DIR}" -G Ninja ${DEPS_CMAKE_FLAGS}
|
|
|
|
cmake --build "${DEPS_BUILD_DIR}"
|
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'
|
2022-08-14 06:56:15 -07:00
|
|
|
name: lintstylua
|
2022-12-17 05:32:20 -07:00
|
|
|
uses: JohnnyMorganz/stylua-action@v2
|
2022-08-14 06:56:15 -07:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2022-10-30 03:08:59 -07:00
|
|
|
version: latest
|
2022-08-14 06:56:15 -07:00
|
|
|
args: --check runtime/
|
|
|
|
|
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
|
|
|
|
run: |
|
2023-02-10 05:56:07 -07:00
|
|
|
cmake -B build -G Ninja
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-08-14 05:49:10 -07:00
|
|
|
name: suggester / uncrustify
|
|
|
|
uses: reviewdog/action-suggester@v1
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
tool_name: uncrustify
|
|
|
|
cleanup: false
|
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-08-14 05:49:10 -07:00
|
|
|
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 07:47:46 -07:00
|
|
|
lintc:
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
if: (github.event_name == 'pull_request' && github.base_ref == 'master') || (github.event_name == 'push' && github.ref == 'refs/heads/master')
|
2022-10-17 10:40:54 -07:00
|
|
|
runs-on: ubuntu-22.04
|
2022-08-14 07:47:46 -07:00
|
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup common environment variables
|
2023-01-25 12:33:18 -07:00
|
|
|
run: ./.github/workflows/env.sh lintc
|
2022-08-14 07:47:46 -07:00
|
|
|
|
|
|
|
- name: Install apt packages
|
|
|
|
run: |
|
|
|
|
sudo add-apt-repository ppa:neovim-ppa/stable
|
2022-12-05 03:58:13 -07:00
|
|
|
./.github/scripts/install_deps_ubuntu.sh
|
2022-08-14 07:47:46 -07:00
|
|
|
sudo apt-get install -y \
|
|
|
|
libluajit-5.1-dev \
|
|
|
|
libmsgpack-dev \
|
|
|
|
libtermkey-dev \
|
|
|
|
libtree-sitter-dev \
|
|
|
|
libunibilium-dev \
|
|
|
|
libuv1-dev \
|
|
|
|
lua-busted \
|
|
|
|
lua-filesystem \
|
|
|
|
lua-inspect \
|
|
|
|
lua-lpeg \
|
|
|
|
lua-nvim \
|
2022-12-05 03:58:13 -07:00
|
|
|
luajit
|
2023-01-25 12:33:18 -07:00
|
|
|
# libvterm-dev \
|
|
|
|
# lua-luv-dev
|
|
|
|
|
|
|
|
# Remove comments from packages once we start using these external
|
|
|
|
# dependencies. See env.sh for more context.
|
2022-08-14 07:47:46 -07:00
|
|
|
|
2022-12-05 03:57:52 -07:00
|
|
|
- uses: ./.github/actions/cache
|
2022-08-14 07:47:46 -07:00
|
|
|
|
|
|
|
- name: Build third-party deps
|
2023-02-11 05:27:43 -07:00
|
|
|
run: |
|
|
|
|
cmake -S cmake.deps -B "${DEPS_BUILD_DIR}" -G Ninja ${DEPS_CMAKE_FLAGS}
|
|
|
|
cmake --build "${DEPS_BUILD_DIR}"
|
2022-08-14 07:47:46 -07:00
|
|
|
|
2023-02-11 05:27:43 -07:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cmake -B build -G Ninja
|
|
|
|
cmake --build build
|
2022-08-14 06:08:38 -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-01-16 03:11:48 -07:00
|
|
|
name: clint.py
|
|
|
|
run: cmake --build build --target lintc-clint
|
2022-08-14 06:08:38 -07:00
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2023-02-08 10:16:48 -07:00
|
|
|
run: cmake --build build --target clang-tidy
|
2021-12-31 09:13:23 -07:00
|
|
|
|
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
|
2022-10-29 12:11:56 -07:00
|
|
|
cc: clang
|
2022-10-17 10:40:54 -07:00
|
|
|
runner: ubuntu-22.04
|
2020-11-16 19:28:01 -07:00
|
|
|
os: linux
|
2020-11-14 19:14:30 -07:00
|
|
|
- flavor: tsan
|
2022-10-29 12:11:56 -07:00
|
|
|
cc: clang
|
2022-10-17 10:40:54 -07:00
|
|
|
runner: ubuntu-22.04
|
2020-11-16 19:28:01 -07:00
|
|
|
os: linux
|
2022-05-05 17:49:26 -07:00
|
|
|
- flavor: uchar
|
|
|
|
cc: gcc
|
2022-10-17 10:40:54 -07:00
|
|
|
runner: ubuntu-22.04
|
2022-05-05 17:49:26 -07:00
|
|
|
os: linux
|
2020-11-16 19:28:01 -07:00
|
|
|
- cc: clang
|
2022-10-17 10:40:54 -07:00
|
|
|
runner: macos-12
|
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.
|
2023-02-10 04:04:00 -07:00
|
|
|
# 2. No treesitter parsers installed.
|
2022-02-15 05:51:56 -07:00
|
|
|
- flavor: functionaltest-lua
|
|
|
|
cc: gcc
|
2022-10-17 10:40:54 -07:00
|
|
|
runner: ubuntu-22.04
|
2022-02-15 05:51:56 -07:00
|
|
|
os: linux
|
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
|
|
|
|
2023-02-11 10:16:04 -07:00
|
|
|
- name: Create log dir
|
|
|
|
run: mkdir -p "${LOG_DIR}"
|
|
|
|
|
2020-11-12 11:22:14 -07:00
|
|
|
- name: Install apt packages
|
2020-11-16 19:28:01 -07:00
|
|
|
if: matrix.os == 'linux'
|
2022-12-05 03:58:13 -07:00
|
|
|
run: ./.github/scripts/install_deps_ubuntu.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
|
|
|
|
2022-12-05 03:57:52 -07:00
|
|
|
- uses: ./.github/actions/cache
|
2020-11-12 20:00:04 -07:00
|
|
|
|
2022-06-27 03:08:59 -07:00
|
|
|
- name: Build third-party deps
|
2023-02-11 05:27:43 -07:00
|
|
|
run: |
|
|
|
|
if test "${FUNCTIONALTEST}" = "functionaltest-lua" ; then
|
|
|
|
DEPS_CMAKE_FLAGS="${DEPS_CMAKE_FLAGS} -D USE_BUNDLED_LUA=ON"
|
|
|
|
fi
|
|
|
|
cmake -S cmake.deps -B "${DEPS_BUILD_DIR}" -G Ninja ${DEPS_CMAKE_FLAGS}
|
|
|
|
cmake --build "${DEPS_BUILD_DIR}"
|
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: |
|
|
|
|
if test -n "${CLANG_SANITIZER}" ; then
|
|
|
|
CMAKE_FLAGS="${CMAKE_FLAGS} -D CLANG_${CLANG_SANITIZER}=ON"
|
|
|
|
fi
|
|
|
|
cmake -B build -G Ninja ${CMAKE_FLAGS}
|
|
|
|
cmake --build build
|
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: "!cancelled()"
|
|
|
|
name: Determine if run should be aborted
|
|
|
|
id: abort_job
|
|
|
|
run: echo "status=${{ job.status }}" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- if: matrix.flavor != 'tsan' && matrix.flavor != 'functionaltest-lua' && (success() || failure() && steps.abort_job.outputs.status == 'success')
|
2022-02-14 02:17:25 -07:00
|
|
|
name: Unittests
|
2023-02-09 12:13:05 -07:00
|
|
|
timeout-minutes: 5
|
2022-02-14 02:17:25 -07:00
|
|
|
run: ./ci/run_tests.sh unittests
|
|
|
|
|
2023-01-11 06:36:26 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-02-14 02:17:25 -07:00
|
|
|
name: Functionaltests
|
2023-02-09 12:13:05 -07:00
|
|
|
timeout-minutes: 15
|
2022-02-14 02:17:25 -07:00
|
|
|
run: ./ci/run_tests.sh functionaltests
|
|
|
|
|
2023-01-11 06:36:26 -07:00
|
|
|
- if: matrix.flavor != 'tsan' && (success() || failure() && steps.abort_job.outputs.status == 'success')
|
2022-02-14 02:17:25 -07:00
|
|
|
name: Oldtests
|
|
|
|
run: ./ci/run_tests.sh oldtests
|
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2023-02-11 05:27:43 -07:00
|
|
|
name: Install
|
|
|
|
run: cmake --install build
|
|
|
|
|
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
|
|
|
name: Installtests
|
|
|
|
run: ./ci/run_tests.sh installtests
|
2020-11-13 08:51:48 -07:00
|
|
|
|
2023-02-11 10:16:04 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
|
|
|
name: Show logs
|
|
|
|
run: cat $(find "$LOG_DIR" -type f)
|
|
|
|
|
2023-02-10 04:04:00 -07:00
|
|
|
old_cmake:
|
|
|
|
name: Test oldest supported cmake
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
timeout-minutes: 15
|
|
|
|
env:
|
|
|
|
CI_OS_NAME: linux
|
|
|
|
CMAKE_URL: 'https://cmake.org/files/v3.10/cmake-3.10.0-Linux-x86_64.sh'
|
|
|
|
CMAKE_VERSION: '3.10.0'
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup common environment variables
|
|
|
|
run: ./.github/workflows/env.sh old_cmake
|
|
|
|
|
|
|
|
- name: Install apt packages
|
|
|
|
run: ./.github/scripts/install_deps_ubuntu.sh
|
|
|
|
|
|
|
|
- name: Install minimum required version of cmake
|
|
|
|
run: |
|
|
|
|
curl --retry 5 --silent --show-error --fail -o /tmp/cmake-installer.sh "$CMAKE_URL"
|
2023-02-10 05:56:07 -07:00
|
|
|
mkdir -p "$BIN_DIR" /opt/cmake-custom
|
2023-02-10 04:04:00 -07:00
|
|
|
chmod a+x /tmp/cmake-installer.sh
|
|
|
|
/tmp/cmake-installer.sh --prefix=/opt/cmake-custom --skip-license
|
2023-02-10 05:56:07 -07:00
|
|
|
ln -sfn /opt/cmake-custom/bin/cmake "$BIN_DIR/cmake"
|
2023-02-10 04:04:00 -07:00
|
|
|
cmake_version="$(cmake --version | head -1)"
|
|
|
|
echo "$cmake_version" | grep -qF "cmake version $CMAKE_VERSION" || {
|
|
|
|
echo "Unexpected CMake version: $cmake_version"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
- uses: ./.github/actions/cache
|
|
|
|
|
|
|
|
- name: Build dependencies
|
|
|
|
run: make deps
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: make CMAKE_FLAGS="-D CI_BUILD=ON -D CMAKE_INSTALL_PREFIX:PATH=$INSTALL_PREFIX -D MIN_LOG_LEVEL=3"
|
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: make install
|
|
|
|
|
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:
|
2022-10-30 02:06:13 -07:00
|
|
|
DEPS_BUILD_DIR: ${{ github.workspace }}/nvim-deps
|
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-12-05 03:57:52 -07:00
|
|
|
- uses: ./.github/actions/cache
|
2022-11-05 14:57:11 -07:00
|
|
|
|
|
|
|
- name: Set env
|
|
|
|
run: ./.github/workflows/env.ps1
|
2020-12-16 23:06:07 -07:00
|
|
|
|
2022-07-17 15:07:35 -07:00
|
|
|
- name: Build deps
|
2022-11-05 14:57:11 -07:00
|
|
|
run: |
|
2023-02-07 06:43:45 -07:00
|
|
|
cmake -S cmake.deps -B $env:DEPS_BUILD_DIR -G Ninja -D CMAKE_BUILD_TYPE='RelWithDebInfo'
|
2022-11-05 14:57:11 -07:00
|
|
|
cmake --build $env:DEPS_BUILD_DIR
|
2022-07-17 15:07:35 -07:00
|
|
|
|
2023-02-11 05:27:43 -07:00
|
|
|
- name: Build
|
2022-11-05 14:57:11 -07:00
|
|
|
run: |
|
2023-02-10 05:56:07 -07:00
|
|
|
cmake -B build -G Ninja -D CMAKE_BUILD_TYPE='RelWithDebInfo' -D CI_BUILD=ON
|
2022-11-05 14:57:11 -07:00
|
|
|
cmake --build build
|
2022-07-17 15:07:35 -07:00
|
|
|
|
|
|
|
- name: Install test deps
|
2022-11-05 14:57:11 -07:00
|
|
|
run: |
|
2022-11-17 00:57:59 -07:00
|
|
|
$PSNativeCommandArgumentPassing = 'Legacy'
|
|
|
|
|
2022-11-05 14:57:11 -07:00
|
|
|
& build\bin\nvim.exe "--version"
|
|
|
|
|
|
|
|
# Ensure that the "win32" feature is set.
|
|
|
|
& build\bin\nvim -u NONE --headless -c 'exe !has(\"win32\").\"cq\"'
|
|
|
|
|
|
|
|
python -m pip install pynvim
|
|
|
|
# Sanity check
|
|
|
|
python -c "import pynvim; print(str(pynvim))"
|
|
|
|
|
|
|
|
gem.cmd install --pre neovim
|
|
|
|
Get-Command -CommandType Application neovim-ruby-host.bat
|
|
|
|
|
|
|
|
node --version
|
|
|
|
npm.cmd --version
|
|
|
|
|
|
|
|
npm.cmd install -g neovim
|
|
|
|
Get-Command -CommandType Application neovim-node-host.cmd
|
|
|
|
npm.cmd link neovim
|
2022-07-17 15:07:35 -07:00
|
|
|
|
|
|
|
- if: "!cancelled()"
|
2022-11-04 05:26:12 -07:00
|
|
|
name: Determine if run should be aborted
|
|
|
|
id: abort_job
|
|
|
|
run: |
|
|
|
|
"status=${{ job.status }}" >> $env:GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-11-05 14:57:11 -07:00
|
|
|
name: Run functionaltests
|
2023-02-09 12:13:05 -07:00
|
|
|
timeout-minutes: 15
|
2022-11-05 14:57:11 -07:00
|
|
|
run: cmake --build build --target functionaltest
|
2022-07-17 15:07:35 -07:00
|
|
|
|
2022-11-04 05:26:12 -07:00
|
|
|
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
|
2022-11-05 14:57:11 -07:00
|
|
|
name: Run oldtests
|
|
|
|
run: |
|
|
|
|
# Add MSYS to path, required for e.g. `find` used in test scripts.
|
|
|
|
# But would break functionaltests, where its `more` would be used then.
|
|
|
|
$OldPath = $env:PATH
|
|
|
|
$env:PATH = "C:\msys64\usr\bin;$env:PATH"
|
|
|
|
& "C:\msys64\mingw64\bin\mingw32-make.exe" -C $(Convert-Path src\nvim\testdir) VERBOSE=1
|
|
|
|
$env:PATH = $OldPath
|