Skip to content

Commit

Permalink
Verify on Windows (native).
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 11, 2025
1 parent e0fb6cd commit d33d262
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,17 @@ jobs:
runtime: ${{ matrix.os.runtime }}
investigate: true

- name: Verify on Linux and macOS
- name: Verify on Linux, macOS or Windows (native)
if: matrix.os.name == 'Ubuntu' || matrix.os.name == 'macOS'
run: |
ghdl --version
- name: Verify on Linux, macOS or Windows (native)
if: matrix.os.name == 'Windows' && matrix.os.runtime == ''
shell: powershell
run: |
ghdl --version
- name: Verify on Windows + MSYS2
if: matrix.os.name == 'Windows' && matrix.os.runtime != ''
shell: 'msys2 {0}'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ runs:
echo "Setting environment variable 'GHDL_PREFIX' ..."
echo "GHDL_PREFIX=$($(pwd).Path)\${{ inputs.install-directory }}\lib\ghdl" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "Adding GHDL to '$PATH' ..."
echo "Adding GHDL to 'PATH' ..."
echo "$($(pwd).Path)\${{ inputs.install-directory }}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Download and install GHDL on Windows + MSYS2 (x86-64)
Expand Down

0 comments on commit d33d262

Please sign in to comment.