]> git.madduck.net Git - etc/vim.git/blob - .github/workflows/linux_vim.yml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Squashed '.vim/bundle/asyncomplete/' content from commit 016590d2
[etc/vim.git] / .github / workflows / linux_vim.yml
1 name: linux_vim
2
3 on:
4   push:
5     branches:
6       - master
7   pull_request:
8     branches:
9       - master
10
11 jobs:
12   build:
13     strategy:
14       fail-fast: false
15       matrix:
16         os: [ubuntu-latest]
17         name: [vim-v82-x64, vim-v81-x64]
18         include:
19           - name: vim-v82-x64
20             os: ubuntu-latest
21             vim_version: 8.2.0813
22             glibc_version: 2.15
23           - name: vim-v81-x64
24             os: ubuntu-latest
25             vim_version: 8.1.2414
26             glibc_version: 2.15
27     runs-on: ${{matrix.os}}
28     steps:
29       - uses: actions/checkout@v4
30       - name: Download vim
31         shell: bash
32         run: |
33           mkdir -p ~/vim/bin
34           curl -L https://github.com/vim/vim-appimage/releases/download/v${{matrix.vim_version}}/GVim-v${{matrix.vim_version}}.glibc${{matrix.glibc_version}}-x86_64.AppImage -o ~/vim/bin/vim
35           chmod u+x ~/vim/bin/vim
36       - name: Download test runner
37         shell: bash
38         run: git clone --depth 1 --branch v1.5.4 --single-branch https://github.com/thinca/vim-themis ~/themis
39       - name: Run tests
40         shell: bash
41         run: |
42           export PATH=~/vim/bin:$PATH
43           export PATH=~/themis/bin:$PATH
44           export THEMIS_VIM=vim
45           vim --version
46           themis --reporter spec