This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
psl_with_ghdl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add GHA workflow for simulation tests
master
T. Meissner
5 years ago
parent
a5afca8752
commit
814b3fc257
2 changed files
with
14 additions
and
9 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-9
.github/workflows/formal.yml
+13
-0
.github/workflows/simulation.yml
+ 1
- 9
.github/workflows/formal.yml
View File
@ -1,17 +1,9 @@
name
:
'
tests
'
name
:
'
formal
'
on
:
[
push, pull_request ]
jobs:
# simulation:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# with:
# submodules: recursive
# - run: docker run --rm -tv $(pwd):/src -w /src/test -e BUILD_NAME=ACCEPTANCE ghdl/vunit:llvm make all
formal:
runs-on
:
ubuntu-latest
steps:
+ 13
- 0
.github/workflows/simulation.yml
View File
@ -0,0 +1,13 @@
name
:
'simulation'
on
:
[
push, pull_request ]
jobs:
simulation:
runs-on
:
ubuntu-latest
steps:
-
uses
:
actions/checkout@v1
with:
submodules
:
recursive
-
run
:
docker run --rm -tv $(pwd):/src -w /src/sim -e BUILD_NAME=ACCEPTANCE ghdl/vunit:llvm make all
Write
Preview
Loading…
Cancel
Save