File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Verification flow
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ - github-runner
7
+ pull_request :
8
+ branches :
9
+ - master
10
+ jobs :
11
+ Run :
12
+ runs-on : ubuntu-22.04
13
+ steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v2
16
+ - name : Run tests
17
+ id : run_tests
18
+ run : make V=1 all > make.log 2>&1
19
+ - name : Upload log
20
+ uses : actions/upload-artifact@v3
21
+ if : failure()
22
+ with :
23
+ name : logfiles
24
+ path : |
25
+ make.log
26
+ test-efm.log
27
+ test-syntax.log
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ SILENT_0 = @
5
5
SILENT_1 =
6
6
7
7
SHELL = /bin/bash -o pipefail
8
- VIM = vim -u test/test_vimrc -U none -T dumb -E --cmd "set runtimepath+=${PWD}"
8
+ VIM = vim -u test/test_vimrc -U NONE -i NONE -T dumb -E --cmd "set runtimepath+=${PWD}"
9
9
10
10
.PHONY : help test test-fold test-indent test-efm
11
11
@@ -30,14 +30,14 @@ test-efm:
30
30
-c ' source test/functions.vim' \
31
31
-c ' source test/run_test.vim' \
32
32
-c ' call RunTestEfm()' | \
33
- tee test-efm.log | grep " ^Error format test "
33
+ tee test-efm.log
34
34
35
35
test-syntax :
36
36
$(SILENT ) $(VIM ) \
37
37
-c ' source test/functions.vim' \
38
38
-c ' source test/run_test.vim' \
39
39
-c ' call RunTestSyntax()' | tr -d ' []' | \
40
- tee test-syntax.log | grep " ^Syntax test "
40
+ tee test-syntax.log
41
41
42
42
performance :
43
43
$(SILENT ) time $(VIM ) \
Original file line number Diff line number Diff line change 1
1
# Vim Syntax Plugin for Verilog and SystemVerilog
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /vhda/verilog_systemverilog.vim. svg?branch=master )] ( https://travis-ci.org /vhda/verilog_systemverilog.vim )
3
+ [ ![ Build Status] ( https://github.com /vhda/verilog_systemverilog.vim/actions/workflows/verification-flow.yml/badge. svg?branch=master )] ( https://github.com /vhda/verilog_systemverilog.vim/actions/workflows/verification-flow.yml )
4
4
5
5
## About
6
6
You can’t perform that action at this time.
0 commit comments