Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Jul 20, 2023
1 parent cf591dd commit f7d23ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/scripts/ghdl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ set -e

cd $(dirname "$0")/../../std_pkgs_08/simulation

./grun std_logic_1164
./grun numeric_std
./grun numeric_bit
11 changes: 9 additions & 2 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,19 @@ jobs:

GHDL:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
suite:
- std_logic_1164
- numeric_std
- numeric_bit
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3

- name: 'Test GHDL'
uses: docker://gcr.io/hdl-containers/sim/osvb
uses: docker://gcr.io/hdl-containers/sim
with:
args: .github/scripts/ghdl.sh
args: sh -c 'cd std_pkgs_08/simulation; ./grun ${{ matrix.suite }}'

0 comments on commit f7d23ef

Please sign in to comment.