Skip to content

Commit

Permalink
Merge pull request #4 from stnolting/sim_workflow
Browse files Browse the repository at this point in the history
setup simulation workflow
  • Loading branch information
stnolting authored Oct 4, 2024
2 parents 56b8326 + 6369b70 commit 35007cb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: neoTRNG simulation

on:
push:
workflow_dispatch:

jobs:

neoTRNG-sim:
runs-on: ubuntu-latest

steps:

- name: '📂 Repository checkout'
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive

- name: '📦 Install GHDL'
uses: ghdl/setup-ghdl-ci@nightly

- name: '🔍 Check tools'
run: ghdl -v

- name: '⚙️ Run neoTRNG simulation'
run: /bin/bash -c "chmod u+x $GITHUB_WORKSPACE/sim/ghdl.sh && $GITHUB_WORKSPACE/sim/ghdl.sh"

0 comments on commit 35007cb

Please sign in to comment.