Skip to content

Commit

Permalink
add GitHub Actions worklfow 'Pipeline'
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Jul 20, 2023
1 parent 8922b45 commit a76c758
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/scripts/ghdl.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env sh

set -e

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

./grun numeric_bit
20 changes: 20 additions & 0 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pipeline

on:
push:
pull_request:
workflow_dispatch:

jobs:

GHDL:
runs-on: ubuntu-latest
steps:

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

- name: 'Test GHDL'
uses: docker://gcr.io/hdl-containers/sim/osvb
with:
args: .github/scripts/ghdl.sh

0 comments on commit a76c758

Please sign in to comment.