-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,930 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
*.un~ | ||
*.sw[op] | ||
__pycache__ | ||
.vscode | ||
tests/*.res | ||
tests/messages | ||
tests/debuglog | ||
test.log | ||
gadgets/ | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "vendor/vader.vim"] | ||
path = vendor/vader.vim | ||
url = https://github.com/junegunn/vader.vim | ||
[submodule "vendor/vim-themis"] | ||
path = vendor/vim-themis | ||
url = https://github.com/thinca/vim-themis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Starter pipeline | ||
# Start with a minimal pipeline that you can customize to build and deploy your code. | ||
# Add steps that build, run tests, deploy, and more: | ||
# https://aka.ms/yaml | ||
|
||
jobs: | ||
- job: 'linax' | ||
pool: | ||
vimImage: 'ubuntu-16.04' | ||
container: 'puremourning/vimspector:test' | ||
steps: | ||
- bash: python3 install_gadget.py | ||
displayName: 'Install gadgets' | ||
|
||
- bash: vim --version | ||
displayName: 'Print vim version information' | ||
|
||
- bash: ./run_tests | ||
displayName: 'Run the tests' | ||
|
||
- job: 'macos' | ||
pool: | ||
vmImage: 'macOS-10.13' | ||
steps: | ||
- bash: brew install macvim | ||
displayName: 'Install vim' | ||
|
||
- bash: python3 install_gadget.py | ||
displayName: 'Install gadgets' | ||
|
||
- bash: vim --version | ||
displayName: 'Print vim version information' | ||
|
||
- bash: ./run_tests | ||
displayName: 'Run the tests' |
Oops, something went wrong.