Browse Source

Add GHA workflow for simulation tests

master
T. Meissner 4 years ago
parent
commit
814b3fc257
2 changed files with 14 additions and 9 deletions
  1. +1
    -9
      .github/workflows/formal.yml
  2. +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

Loading…
Cancel
Save