TEST #18
Workflow file for this run
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: Pipeline | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
name: "Test Python ${{ matrix.python-version }}" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dev requirements | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y \ | |
antlr4 \ | |
libantlr4-runtime-dev \ | |
python3-dev \ | |
yosys | |
python3 -m pip install --upgrade pip wheel setuptools | |
python3 -m pip install -r dev.requirements.txt | |
python3 -m pip install git+https://github.com/antmicro/tuttest | |
- name: Lint with flake8 | |
run: flake8 fpga_topwrap --count --show-source --statistics | |
- name: Build | |
run: tuttest README.md | bash - | |
- name: Test with pytest | |
run: pytest | |
Examples-HDMI: | |
runs-on: ubuntu-latest | |
name: 'Examples HDMI' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dev requirements | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y \ | |
antlr4 \ | |
libantlr4-runtime-dev \ | |
python3-dev \ | |
yosys | |
python3 -m pip install --upgrade pip wheel setuptools | |
python3 -m pip install -r dev.requirements.txt | |
python3 -m pip install git+https://github.com/antmicro/tuttest | |
- name: Build | |
run: tuttest README.md | bash - | |
- name: Generate sources for example HDMI setup | |
run: | | |
cd examples/hdmi | |
tuttest README.md generate | bash - | |
cd - | |
Examples-PWM: | |
runs-on: ubuntu-latest | |
name: 'Examples PWM' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install fpga-topwrap | |
run: | | |
python3 -m pip install git+https://github.com/antmicro/tuttest | |
tuttest README.md | bash - | |
- name: Build example PWM setup | |
run: | | |
cd examples/pwm | |
make generate copy_sources | |
docker run --rm -i -v $(pwd):/wrk -w /wrk \ | |
gcr.io/hdl-containers/conda/f4pga/xc7/z010 \ | |
bash -le <<'EOF' | |
pip3 install edalize==0.4.0 fusesoc==1.12.0 | |
make zvb | |
EOF | |
cp build/project_1_0/zynq-symbiflow/project_top.bit ../../top.bit | |
- name: Store bit | |
uses: actions/upload-artifact@v3 | |
with: | |
name: top.bit | |
path: top.bit | |
Docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker://btdi/sphinx:min | |
with: | |
args: ./.github/scripts/sphinx.sh | |
- uses: docker://btdi/latex | |
with: | |
args: ./.github/scripts/latex.sh | |
- name: 'Upload artifact: Sphinx HTML and PDF' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Documentation | |
path: docs/build/html | |
- name: Deploy to Github Pages | |
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' | |
run: | | |
sudo chown -R $(whoami) docs | |
cd docs/build/html | |
touch .nojekyll | |
git init | |
cp ../../../.git/config ./.git/config | |
git add . | |
git config --local user.email "push@gha" | |
git config --local user.name "GHA" | |
git commit -am "update ${{ github.sha }}" | |
git push -u origin +HEAD:gh-pages | |
rm -rf .git |