-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci.yml: Install GHDL as done in LiteX.
- Loading branch information
1 parent
7cc1e0f
commit a1da8cb
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,10 +13,6 @@ jobs: | |
- name: Setup CCache | ||
uses: hendrikmuhs/[email protected] | ||
|
||
- uses: ghdl/setup-ghdl-ci@master | ||
with: | ||
backend: llvm | ||
|
||
# Install Tools | ||
- name: Install Tools | ||
run: | | ||
|
@@ -46,6 +42,16 @@ jobs: | |
run: | | ||
sudo python3 litex_setup.py --gcc=riscv | ||
# Build / Install GHDL | ||
- name: Build GHDL | ||
run: | | ||
sudo apt-get install gnat llvm | ||
git clone https://github.com/ghdl/ghdl.git | ||
cd ghdl | ||
./configure --with-llvm-config | ||
make | ||
sudo make install | ||
# Build / Install Verilator | ||
- name: Build Verilator | ||
run: | | ||
|