Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 564 Bytes

File metadata and controls

28 lines (22 loc) · 564 Bytes

setup-nvc

GitHub Action to install NVC VHDL simulator.

Usage

See action.yml

- uses: nickg/setup-nvc@v1
  with:
    version: latest
- run: |
    nvc --version    # NVC binary added to path

Both Ubuntu and Windows runners are supported. The MSYS2 shell on Windows does not use the system PATH environment variable so you need to add it manually:

- uses: nickg/setup-nvc@v1
  with:
    version: latest
- run: |
    echo "/c/Program\ Files/NVC/bin" >> $GITHUB_PATH