Continuous Integration #13
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
name: CI | |
run-name: Continuous Integration | |
on: [push] | |
jobs: | |
CI: | |
name: Continuous Integration | |
runs-on: debian-sid | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install nextpnr-ecp5 and Yosys | |
run: | | |
sudo apt-get -y update | |
sudo apt-get install nextpnr-ecp5 yosys | |
- name: Install Python requirements | |
run: | | |
sudo apt-get -y install python3-pip | |
sudo -H pip3 install --upgrade pip | |
pip install pipenv | |
pipenv install --ignore-pipfile | |
- name: Build the FPGA bitstream | |
run: | | |
nextpnr-ecp5 --version | |
yosys --version | |
pipenv run python3 ./sucrela.py --build |