mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
210957f3d5
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1,002 B
YAML
41 lines
1,002 B
YAML
name: ci
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
# Checkout Repository
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# Install Tools
|
|
- name: Install Tools
|
|
run: |
|
|
sudo apt-get install wget build-essential
|
|
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.9"
|
|
cache: "pip"
|
|
cache-dependency-path: "setup.py"
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python3 -m pip install setuptools requests pexpect meson
|
|
|
|
# Install (n)Migen / LiteX / Cores
|
|
- name: Install LiteX
|
|
run: |
|
|
wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
|
|
python3 litex_setup.py init install --user
|
|
|
|
# Install Project
|
|
- name: Install Project
|
|
run: python3 setup.py develop --user
|
|
|
|
# Test
|
|
- name: Run Tests
|
|
run: python3 setup.py test
|