neovim/.github/workflows/ci.yml

117 lines
3.2 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: '**'
pull_request:
branches:
- 'master'
- 'release-[0-9]+.[0-9]+'
2020-11-12 11:22:14 -07:00
jobs:
unixish:
2020-11-16 19:28:01 -07:00
name: ${{ matrix.os }} ${{ matrix.flavor }} (cc=${{ matrix.cc }})
strategy:
fail-fast: false
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
- 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
- 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:
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
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 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: |
# 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
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
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
- 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:
config: [ MINGW_64-gcov, MINGW_32, MSVC_64, MSVC_32 ]
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 }}