Browse Source

Use two separate jobs in one GHA workflow instead of 2 separate workflows

master
T. Meissner 4 years ago
parent
commit
eacf18cc49
3 changed files with 11 additions and 17 deletions
  1. +0
    -13
      .github/workflows/formal.yml
  2. +10
    -2
      .github/workflows/test.yml
  3. +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: 'tests'
on: [ push, pull_request ] on: [ push, pull_request ]
jobs: jobs:
docker:
test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
with: with:
submodules: recursive submodules: recursive
- run: docker run --rm -tv $(pwd):/src -w /src/test -e BUILD_NAME=ACCEPTANCE ghdl/vunit:llvm make all - 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) 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. It is mirrored to github with every push, so both should be in sync.


Loading…
Cancel
Save