2020-11-16 19:28:01 -07:00
|
|
|
name: CI
|
2020-12-05 10:02:00 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: '**'
|
|
|
|
pull_request:
|
2021-05-05 06:02:22 -07:00
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'release-[0-9]+.[0-9]+'
|
2020-11-12 11:22:14 -07:00
|
|
|
|
|
|
|
jobs:
|
2020-12-16 23:06:07 -07:00
|
|
|
unixish:
|
2020-11-16 19:28:01 -07:00
|
|
|
name: ${{ matrix.os }} ${{ 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-04-18 19:04:46 -07:00
|
|
|
cc: clang-12
|
2020-11-16 19:28:01 -07:00
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
2020-11-14 19:03:26 -07:00
|
|
|
- flavor: lint
|
|
|
|
cc: gcc
|
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-05-02 13:39:09 -07:00
|
|
|
cc: clang-12
|
2020-11-16 19:28:01 -07:00
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
|
|
|
- cc: clang
|
|
|
|
runner: macos-10.15
|
|
|
|
os: osx
|
2021-04-02 14:02:52 -07:00
|
|
|
- flavor: functionaltest-lua
|
|
|
|
cc: gcc
|
|
|
|
runner: ubuntu-20.04
|
|
|
|
os: linux
|
2020-11-16 19:28:01 -07:00
|
|
|
runs-on: ${{ matrix.runner }}
|
2021-03-12 13:07:03 -07:00
|
|
|
if: github.event.pull_request.draft == false
|
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:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup commom 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
|
2020-11-17 20:00:10 -07:00
|
|
|
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 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 12
|
|
|
|
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: |
|
2021-01-10 22:01:37 -07:00
|
|
|
# Workaround brew issues
|
2020-12-19 12:18:26 -07:00
|
|
|
rm -f /usr/local/bin/2to3
|
2020-11-16 19:57:46 -07:00
|
|
|
brew update >/dev/null
|
|
|
|
brew upgrade
|
2021-01-16 22:08:12 -07:00
|
|
|
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/before_install.sh
|
|
|
|
./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
|
2020-11-14 19:03:26 -07:00
|
|
|
key: ${{ runner.os }}-${{ 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
|
2020-11-13 08:51:48 -07:00
|
|
|
|
|
|
|
- name: Cache dependencies
|
|
|
|
if: ${{ success() }}
|
|
|
|
run: ./ci/before_cache.sh
|
2020-12-16 23:06:07 -07:00
|
|
|
|
|
|
|
windows:
|
|
|
|
runs-on: windows-2016
|
2021-03-12 13:07:03 -07:00
|
|
|
if: github.event.pull_request.draft == false
|
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) }}
|
2020-12-16 23:06:07 -07:00
|
|
|
|
|
|
|
strategy:
|
2020-12-30 07:52:42 -07:00
|
|
|
fail-fast: false
|
2020-12-16 23:06:07 -07:00
|
|
|
matrix:
|
|
|
|
config: [ MINGW_64-gcov, MINGW_32, MSVC_64, MSVC_32 ]
|
|
|
|
name: windows (${{ matrix.config }})
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
2021-04-20 19:57:41 -07:00
|
|
|
path: ${{ env.DEPS_BUILD_DIR }}
|
2020-12-16 23:06:07 -07:00
|
|
|
key: ${{ matrix.config }}-${{ hashFiles('third-party\**') }}
|
|
|
|
|
|
|
|
- name: Run CI
|
|
|
|
run: powershell ci\build.ps1
|
|
|
|
env:
|
|
|
|
CONFIGURATION: ${{ matrix.config }}
|