Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 16, 2025
2 parents ec4a202 + 33cadaa commit 27917cd
Show file tree
Hide file tree
Showing 3 changed files with 254 additions and 244 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,18 @@ jobs:
fail-fast: false
matrix:
include:
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-20.04', 'runtime': '', 'backend': 'mcode'}
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-24.04', 'runtime': '', 'backend': 'xcode'}
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-24.04', 'runtime': '', 'backend': 'mcode'}
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-24.04', 'runtime': '', 'backend': 'llvm'}
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-24.04', 'runtime': '', 'backend': 'llvm-jit'}
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-24.04', 'runtime': '', 'backend': 'gcc'}
- {'icon': '🍎', 'name': 'macOS', 'image': 'macos-13', 'runtime': '', 'backend': 'gcc'}
- {'icon': '🍎', 'name': 'macOS', 'image': 'macos-13', 'runtime': '', 'backend': 'mcode'}
- {'icon': '🍎', 'name': 'macOS', 'image': 'macos-13', 'runtime': '', 'backend': 'llvm'}
- {'icon': '🍏', 'name': 'macOS', 'image': 'macos-14', 'runtime': '', 'backend': 'llvm'}
- {'icon': 'πŸͺŸ', 'name': 'Windows', 'image': 'windows-2022', 'runtime': '', 'backend': 'mcode'}
- {'icon': 'πŸͺŸβ¬›', 'name': 'Windows', 'image': 'windows-2022', 'runtime': 'mingw32', 'backend': 'mcode'}
- {'icon': 'πŸͺŸπŸŸ¦', 'name': 'Windows', 'image': 'windows-2022', 'runtime': 'mingw64', 'backend': 'mcode'}
- {'icon': 'πŸͺŸπŸŸ¦', 'name': 'Windows', 'image': 'windows-2022', 'runtime': 'mingw64', 'backend': 'llvm'}
- {'icon': 'πŸͺŸπŸŸ¦', 'name': 'Windows', 'image': 'windows-2022', 'runtime': 'mingw64', 'backend': 'llvm-jit'}
Expand Down Expand Up @@ -65,6 +69,8 @@ jobs:
- name: Verify on Linux or macOS
if: matrix.name == 'Ubuntu' || matrix.name == 'macOS'
run: |
printf "%s\n" "${PATH}"
which ghdl
ghdl --version
Expand Down
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,21 @@ This composite action, installs GHDL in a GitHub Action's workflow job.
## Features

* Select GHDL version (tagged release like `5.0.0`, `latest` (stable) release or `nightly` release (rolling release)).
* Select GHDL backend (LLVM, LLVM-JIT, mcode, GCC).
* Select GHDL version:
* tagged release like `5.0.0`
* `latest` (stable) release, or
* `nightly` release (rolling release).
* Select GHDL backend:
* mcode
* LLVM
* LLVM-JIT (new)
* GCC (deprecated).
* Activate an investigation mode (check and show GHDL installation, ...).
* Supported runner OS' (automatically detected): Ubuntu 2024.04, macOS (x86-64), macOS (aarch64), Windows.
* Supported runner OS' provided by GitHub (automatically detected):
* Ubuntu 24.04 (LTS),
* macOS-13 (x86-64),
* macOS-14 (aarch64)
* Windows Server 2022.

## Usage

Expand Down
Loading

0 comments on commit 27917cd

Please sign in to comment.