Skip to content

Commit

Permalink
ci: Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Feb 27, 2023
1 parent 150d46e commit 457f087
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/ccache-action@v1.2

# Install Tools
- name: Install Tools
Expand All @@ -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
Expand All @@ -40,5 +40,4 @@ jobs:
# Test
- name: Run Tests
run: |
export PATH=/usr/local/riscv/bin:$PATH
python3 setup.py test

0 comments on commit 457f087

Please sign in to comment.