This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
libvhdl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
Browse Source
Use two separate jobs in one GHA workflow instead of 2 separate workflows
master
T. Meissner
5 years ago
parent
5cb77eb1a6
commit
eacf18cc49
3 changed files
with
11 additions
and
17 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-13
.github/workflows/formal.yml
+10
-2
.github/workflows/test.yml
+1
-2
README.md
+ 0
- 13
.github/workflows/formal.yml
View File
@ -1,13 +0,0 @@
name
:
'formal'
on
:
[
push, pull_request ]
jobs:
docker:
runs-on
:
ubuntu-latest
steps:
-
uses
:
actions/checkout@v1
with:
submodules
:
recursive
-
run
:
docker run --rm -tv $(pwd):/src -w /src/formal -e BUILD_NAME=ACCEPTANCE ghdl/synth:formal make all
+ 10
- 2
.github/workflows/test.yml
View File
@ -1,13 +1,21 @@
name
:
'test'
name
:
'test
s
'
on
:
[
push, pull_request ]
jobs:
docker
:
test
:
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:
-
uses
:
actions/checkout@v1
with:
submodules
:
recursive
-
run
:
docker run --rm -tv $(pwd):/src -w /src/formal -e BUILD_NAME=ACCEPTANCE ghdl/synth:formal make all
+ 1
- 2
README.md
View File
@ -1,5 +1,4 @@
[
![test
](
https://github.com/tmeissner/libvhdl/workflows/test/badge.svg?branch=master
)](https://github.com/tmeissner/libvhdl/actions?query=workflow%3Atest)
[
![formal
](
https://github.com/tmeissner/libvhdl/workflows/formal/badge.svg?branch=master
)](https://github.com/tmeissner/libvhdl/actions?query=workflow%3Aformal)
[
![tests
](
https://github.com/tmeissner/libvhdl/workflows/tests/badge.svg?branch=master
)](https://github.com/tmeissner/libvhdl/actions?query=workflow%3Atests)
The original repository is now located on my own git-server at [
https://git.goodcleanfun.de/tmeissner/libvhdl
](
https://git.goodcleanfun.de/tmeissner/libvhdl
)
It is mirrored to github with every push, so both should be in sync.
Write
Preview
Loading…
Cancel
Save