-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (57 loc) · 1.79 KB
/
vader-vim.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
name: Vader Integration Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Vim
run: sudo apt-get install vim neovim
- name: Download Dependencies
run: |
git clone https://github.com/junegunn/vader.vim.git
wget https://github.com/rgoulter/c-worksheet-instrumentor/releases/download/v0.2.6/c-worksheet-instrumentor-0.2.6.tar
tar -xf c-worksheet-instrumentor-0.2.6.tar
- name: Demonstrate C Worksheet
run: |
# Uploaded release compiled with recent Java.
export JAVA_HOME=$JAVA_HOME_21_X64
c-worksheet-instrumentor-0.2.6/bin/c-worksheet-instrumentor <(cat << EOF
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello World\n");
}
EOF
)
- name: Test Vim
run: |
# Uploaded release compiled with recent Java.
export JAVA_HOME=$JAVA_HOME_21_X64
export PATH=c-worksheet-instrumentor-0.2.6/bin:$PATH
vim -Es -Nu <(cat << VIMRC
set rtp+=vader.vim
set rtp+=.
filetype plugin indent on
VIMRC
) -c 'silent Vader! test/*'
timeout-minutes: 2
- name: Test NeoVim
run: |
# Uploaded release compiled with recent Java.
export JAVA_HOME=$JAVA_HOME_21_X64
export PATH=c-worksheet-instrumentor-0.2.6/bin:$PATH
nvim -Es -u <(cat << VIMRC
set rtp+=vader.vim
set rtp+=.
filetype plugin indent on
VIMRC
) -c 'silent Vader! test/*'
timeout-minutes: 2