Skip to content

Commit

Permalink
Add project files
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarawneh committed Nov 14, 2017
1 parent 57b9bca commit 4ca4778
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,4 @@ $RECYCLE.BIN/
# End of https://www.gitignore.io/api/linux,python,windows

*.sublime-workspace
generated
7 changes: 6 additions & 1 deletion colorpen.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,10 @@
".* : (\\[.+\\])": "green bold",
"Result: (PASS)": "green bold",
"Result: (FAIL)": "red bold",
"Reason: (.*)": "red"
"Reason: (.*)": "red",
"FormalVerifier>": "bold blue",
"Verification mode:": "bold",
"Assertion Summary:": "bold",
" Fail": "red bold",
" Pass": "green bold"
}
18 changes: 18 additions & 0 deletions fabfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from fabric.api import run
from fabric.api import sudo
from fabric.api import cd
from fabric.api import env
from fabric.operations import put

env.host_string = "eeehandel"
env.use_ssh_config = True
env.output_prefix = False

def gen():
with cd("sync_verif"):
put("gates/gates.v", "gates/gates.v")
put("generated/*", "generated")

def verif():
with cd("sync_verif"):
run("source ./setup && ./go.sh")
2 changes: 1 addition & 1 deletion project.sublime-project
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[
{
"path": ".",
"folder_exclude_patterns": [],
"folder_exclude_patterns": ["env"],
"file_exclude_patterns": ["*.work"],
}
]
Expand Down

0 comments on commit 4ca4778

Please sign in to comment.