Skip to content

Commit

Permalink
Vim YouCompleteMe Testing (#118)
Browse files Browse the repository at this point in the history
Closes #117 

Signed-off-by: Mike Detwiler <mike@detwiler.io>
  • Loading branch information
detwiler authored Dec 11, 2021
1 parent fdb11a0 commit 623c523
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ jobs:
strategy:
matrix:
include:
- image: alpine:3.13
- image: alpine:3.14
- image: alpine:latest
- image: alpine:edge
- image: centos:latest
- image: quay.io/centos/centos:stream9
- image: fedora:34
- image: fedora:latest
- image: ubuntu:rolling
- image: ubuntu:latest
- image: ubuntu:rolling

env:
DEBIAN_FRONTEND: noninteractive
Expand Down
2 changes: 1 addition & 1 deletion .gnulib
1 change: 1 addition & 0 deletions build-aux/install-reqs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ctags
g++
git-diff-highlight
less
linux-headers
python3-dev
py3-pip
vim
Expand Down
6 changes: 5 additions & 1 deletion m4/envconf.m4
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ AS_VAR_SET_IF([$1],
QH_OS_RELEASE
AS_ECHO_N(['setting $1 to computed value... '])
AS_CASE([$ID],
[alpine], [AS_VAR_SET([$1], [llvm-10])],
[alpine], [AS_CASE([$VERSION_ID],
[3.13*], [AS_VAR_SET([$1], [llvm-10])],
[3.14*], [AS_VAR_SET([$1], [llvm-11])],
[3.15*], [AS_VAR_SET([$1], [llvm-12])],
[AS_VAR_SET([$1], [master])])],
[centos], [AS_CASE([$VERSION_ID],
[8], [AS_VAR_SET([$1], [vim-7.4.1578])],
[AS_VAR_SET([$1], [master])])],
Expand Down

0 comments on commit 623c523

Please sign in to comment.