-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
150d46e
commit 457f087
Showing
1 changed file
with
7 additions
and
8 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 |
---|---|---|
|
@@ -4,11 +4,14 @@ on: [push, pull_request] | |
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
# Checkout Repository | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup CCache | ||
uses: hendrikmuhs/[email protected] | ||
|
||
# Install Tools | ||
- name: Install Tools | ||
|
@@ -23,15 +26,12 @@ jobs: | |
- name: Install LiteX | ||
run: | | ||
wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py | ||
python3 litex_setup.py init install --user | ||
python3 litex_setup.py --init --install --user | ||
# Install RISC-V GCC | ||
- name: Install RISC-V GCC | ||
run: | | ||
wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py | ||
python3 litex_setup.py gcc | ||
sudo mkdir /usr/local/riscv | ||
sudo cp -r $PWD/../riscv64-*/* /usr/local/riscv | ||
sudo python3 litex_setup.py --gcc=riscv | ||
# Install Project | ||
- name: Install Project | ||
|
@@ -40,5 +40,4 @@ jobs: | |
# Test | ||
- name: Run Tests | ||
run: | | ||
export PATH=/usr/local/riscv/bin:$PATH | ||
python3 setup.py test |