Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
2f5b746e
Commit
2f5b746e
authored
Jun 07, 2020
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upgrade CI workflow
parent
5ed053d3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
30 deletions
+10
-30
.github/workflows/main.yaml
+6
-26
.github/workflows/notice.yaml
+1
-1
README.md
+3
-3
No files found.
.github/workflows/main.yaml
View file @
2f5b746e
name
:
Build and Test
name
:
Main
on
:
push
:
pull_request
:
...
...
@@ -12,7 +12,7 @@ jobs:
strategy
:
matrix
:
os
:
-
ubuntu-
18
.04
-
ubuntu-
20
.04
-
macOS-10.15
-
windows-2019
steps
:
...
...
@@ -34,7 +34,7 @@ jobs:
strategy
:
matrix
:
os
:
-
ubuntu-
18
.04
-
ubuntu-
20
.04
-
macOS-10.15
needs
:
build
steps
:
...
...
@@ -44,27 +44,7 @@ jobs:
run
:
brew install shunit2 icarus-verilog
-
name
:
Install Dependencies (Linux)
if
:
runner.os == 'Linux'
run
:
sudo apt-get install -y shunit2 flex bison autoconf gperf
-
name
:
Cache iverilog (Linux)
uses
:
actions/cache@v1
if
:
runner.os == 'Linux'
with
:
path
:
~/.local
key
:
${{ runner.OS }}-iverilog-10-3
restore-keys
:
${{ runner.OS }}-iverilog-10-3
-
name
:
Install iverilog (Linux)
if
:
runner.os == 'Linux'
run
:
|
if [ ! -e "$HOME/.local/bin/iverilog" ]; then
curl -L https://github.com/steveicarus/iverilog/archive/v10_3.tar.gz > iverilog-10_3.tar.gz
tar -xzf iverilog-10_3.tar.gz
cd iverilog-10_3
autoconf
./configure --prefix=$HOME/.local
make
make install
cd ..
fi
run
:
sudo apt-get install -y shunit2 iverilog
-
name
:
Download Artifact
uses
:
actions/download-artifact@v1
with
:
...
...
@@ -77,7 +57,7 @@ jobs:
make test
release
:
runs-on
:
ubuntu-
18
.04
runs-on
:
ubuntu-
20
.04
strategy
:
matrix
:
name
:
[
macOS
,
Linux
,
Windows
]
...
...
@@ -90,7 +70,7 @@ jobs:
name
:
${{ matrix.name }}
path
:
sv2v-${{ matrix.name }}
-
name
:
Mark Binary Executable
run
:
chmod +x */sv2v
*
run
:
chmod +x */sv2v
-
name
:
Create ZIP
run
:
zip -r sv2v-${{ matrix.name }} ./sv2v-${{ matrix.name }}
-
name
:
Upload Release Asset
...
...
.github/workflows/notice.yaml
View file @
2f5b746e
...
...
@@ -9,7 +9,7 @@ on:
-
NOTICE
jobs
:
notice
:
runs-on
:
ubuntu-
18
.04
runs-on
:
ubuntu-
20
.04
steps
:
-
uses
:
actions/checkout@v1
-
uses
:
mstksg/setup-stack@v2
...
...
README.md
View file @
2f5b746e
...
...
@@ -44,8 +44,8 @@ All of sv2v's dependencies are free and open-source.
### Pre-built binaries
Binaries for
Linux and macOS are available on the
[
releases page
]
. If your
system is not covered, or you would like to build the latest commit, simple
Binaries for
Ubuntu, macOS, and Windows are available on the
[
releases page
]
. If
your
system is not covered, or you would like to build the latest commit, simple
instructions for building from source are below.
[
releases page
]:
https://github.com/zachjs/sv2v/releases
...
...
@@ -122,7 +122,7 @@ front end if there is significant interest.
## Testing
Once the
[
test dependencies
](
#dependencies
)
are installed, tests can be run with
`make test`
.
Travis CI is used to automatically test commits on GitHub
.
`make test`
.
GitHub Actions is used to automatically test commits
.
There is also a
[
SystemVerilog compliance suite
]
being created to test
open-source tools' SystemVerilog support. Although not every test in the suite
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment