neovim/.github/workflows/ci.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

174 lines
5.4 KiB
YAML
Raw Normal View History

2020-11-16 19:28:01 -07:00
name: CI
2020-12-05 10:02:00 -07:00
on:
push:
branches:
- 'master'
- 'release-[0-9]+.[0-9]+'
2020-12-05 10:02:00 -07:00
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- 'master'
- 'release-[0-9]+.[0-9]+'
2020-11-12 11:22:14 -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:
lint:
if: (github.event_name == 'pull_request' && github.base_ref == 'master' && !github.event.pull_request.draft) || (github.event_name == 'push' && github.ref == 'refs/heads/master')
runs-on: ubuntu-20.04
env:
CC: gcc
steps:
- uses: actions/checkout@v2
- name: Setup common environment variables
run: ./.github/workflows/env.sh lint
- name: Install apt packages
run: |
sudo apt-get update
2022-02-16 09:31:24 -07:00
sudo apt-get install -y autoconf automake build-essential ccache cmake gettext gperf libtool-bin locales ninja-build pkg-config flake8
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
${{ env.CACHE_NVIM_DEPS_DIR }}
~/.ccache
key: ${{ matrix.runner }}-lint-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }}
- name: Build third-party
run: ./ci/before_script.sh
- name: Run lint
run: ./ci/script.sh
- name: Cache dependencies
if: ${{ success() }}
run: ./ci/before_cache.sh
unixish:
name: ${{ matrix.runner }} ${{ matrix.flavor }} (cc=${{ matrix.cc }})
strategy:
fail-fast: false
matrix:
include:
- flavor: asan
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
cc: clang-13
2020-11-16 19:28:01 -07:00
runner: ubuntu-20.04
os: linux
- cc: clang
runner: macos-10.15
os: osx
2021-09-24 06:01:30 -07:00
- cc: clang
runner: macos-11.0
os: osx
- 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 }}
timeout-minutes: 45
2021-03-12 13:07:03 -07:00
if: github.event.pull_request.draft == false
2020-11-12 11:22:14 -07:00
env:
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:
- uses: actions/checkout@v2
- name: Setup common environment variables
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
sudo apt-get install -y autoconf automake build-essential ccache cmake cpanminus cscope gcc-multilib gdb gettext gperf 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
- 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
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: |
brew update >/dev/null
brew install automake ccache perl cpanminus ninja
2020-11-16 19:57:46 -07:00
2020-11-12 11:22:14 -07:00
- name: Setup interpreter packages
run: |
./ci/install.sh
- name: Cache dependencies
uses: actions/cache@v2
with:
2020-11-13 07:54:55 -07:00
path: |
${{ env.CACHE_NVIM_DEPS_DIR }}
~/.ccache
key: ${{ matrix.runner }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }}
2020-11-12 20:00:04 -07:00
- name: Build third-party
run: ./ci/before_script.sh
- name: Build and test
run: ./ci/script.sh
- name: Cache dependencies
if: ${{ success() }}
run: ./ci/before_cache.sh
windows:
runs-on: windows-2016
2021-03-12 13:07:03 -07:00
if: github.event.pull_request.draft == false
env:
DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }}
DEPS_PREFIX: ${{ format('{0}/nvim-deps/usr', github.workspace) }}
strategy:
fail-fast: false
matrix:
2021-11-06 12:38:46 -07:00
config: [ MINGW_64-gcov, MSVC_64 ]
name: windows (${{ matrix.config }})
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ${{ env.DEPS_BUILD_DIR }}
key: ${{ matrix.config }}-${{ hashFiles('third-party\**') }}
- name: Run CI
run: powershell ci\build.ps1
env:
CONFIGURATION: ${{ matrix.config }}