foss-for-fpga: fixed image alignment on some slides #50
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: 'examples' | |
on: | |
push: | |
jobs: | |
examples: | |
name: 'Running examples' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Pull container images | |
run: | | |
docker pull hdlc/sim:osvb | |
docker pull hdlc/ghdl:yosys | |
docker pull hdlc/nextpnr:ice40 | |
docker pull hdlc/icestorm | |
- run: cd examples/cocotb; bash run.sh | |
- run: make -C examples/ghdl sim | |
- run: make -C examples/ghdl syn | |
- run: make -C examples/impl | |
- run: make -C examples/verilator |