ci: use a single matrix to test SymbiFlow and F4PGA (#592)
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
8c411eb74e
commit
603cf6763c
|
@ -0,0 +1 @@
|
|||
{}
|
|
@ -77,15 +77,18 @@ jobs:
|
|||
git push -u origin +HEAD:gh-pages
|
||||
|
||||
|
||||
Deprecated:
|
||||
Builds:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- { fam: xc7, example: counter_test }
|
||||
- { fam: eos-s3, example: btn_counter }
|
||||
name: '🚦 Example (deprecated sh) | ${{ matrix.fam }}'
|
||||
flow:
|
||||
- SymbiFlow
|
||||
- F4PGA
|
||||
fam:
|
||||
- xc7
|
||||
- eos-s3
|
||||
name: '🚦 ${{ matrix.flow }} | ${{ matrix.fam }}'
|
||||
env:
|
||||
F4PGA_INSTALL_DIR: /opt/f4pga
|
||||
FPGA_FAM: ${{ matrix.fam }}
|
||||
|
@ -106,14 +109,46 @@ jobs:
|
|||
pip install .
|
||||
cd ..
|
||||
|
||||
- name: 🚧 Test f4pga-env
|
||||
# F4PGA
|
||||
|
||||
- name: 🚧 [F4PGA] Test f4pga build
|
||||
if: matrix.flow == 'F4PGA'
|
||||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
cd f4pga-examples
|
||||
|
||||
# FIXME
|
||||
# Temporarily allow QL example to fail, until https://github.com/chipsalliance/f4pga/pull/577 is merged.
|
||||
case '${{ matrix.fam }}' in
|
||||
eos-s3)
|
||||
f4pga build --flow ../.github/${{ matrix.fam }}_test.json | echo 'See #577'
|
||||
;;
|
||||
*)
|
||||
f4pga build --flow ../.github/${{ matrix.fam }}_test.json
|
||||
;;
|
||||
esac
|
||||
|
||||
- name: '📤 Upload artifact: Arty 35 bitstream'
|
||||
if: matrix.flow == 'F4PGA' && matrix.fam == 'xc7'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.flow }}-arty_35-Bitstream-pyF4PGA
|
||||
path: f4pga-examples/build/arty_35/top.bit
|
||||
if-no-files-found: error
|
||||
|
||||
# SymbiFlow
|
||||
|
||||
- name: 🚧 [SymbiFlow] Test f4pga-env
|
||||
if: matrix.flow == 'SymbiFlow'
|
||||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
echo "F4PGA_BIN_DIR=$(f4pga-env bin)" >> "$GITHUB_ENV"
|
||||
echo "F4PGA_SHARE_DIR=$(f4pga-env share)" >> "$GITHUB_ENV"
|
||||
|
||||
- name: 🚧 Test make example
|
||||
- name: 🚧 [SymbiFlow] Test make example
|
||||
if: matrix.flow == 'SymbiFlow'
|
||||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
|
@ -128,81 +163,25 @@ jobs:
|
|||
esac
|
||||
|
||||
- name: '📤 Upload artifact: Arty 35 bitstream'
|
||||
if: matrix.fam == 'xc7'
|
||||
if: matrix.flow == 'SymbiFLow' && matrix.fam == 'xc7'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: arty_35-Bitstream
|
||||
name: ${{ matrix.flow }}-arty_35-Bitstream
|
||||
path: f4pga-examples/xc7/counter_test/build/arty_35/top.bit
|
||||
if-no-files-found: error
|
||||
|
||||
- name: '📤 Upload artifact: QuickLogic bitstream'
|
||||
if: matrix.fam == 'eos-s3'
|
||||
if: matrix.flow == 'SymbiFLow' && matrix.fam == 'eos-s3'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: eos-s3-Bitstream
|
||||
name: ${{ matrix.flow }}-eos-s3-Bitstream
|
||||
path: f4pga-examples/eos-s3/btn_counter/build/top.bit
|
||||
if-no-files-found: error
|
||||
|
||||
|
||||
pyF4PGA:
|
||||
Python-Tests:
|
||||
runs-on: ubuntu-latest
|
||||
name: '🐍 Example | xc7'
|
||||
env:
|
||||
F4PGA_INSTALL_DIR: /opt/f4pga
|
||||
FPGA_FAM: xc7
|
||||
|
||||
steps:
|
||||
|
||||
- name: 🧰 Checkout
|
||||
uses: actions/checkout@v3
|
||||
# with:
|
||||
# submodules: recursive
|
||||
|
||||
- name: 🔧 Prepare environment
|
||||
run: ./.github/scripts/prepare_environment.sh
|
||||
|
||||
- name: 🐍 Install f4pga (pip)
|
||||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
cd f4pga
|
||||
pip install .
|
||||
cd ..
|
||||
|
||||
- name: 🚧 Test f4pga build
|
||||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
cd f4pga-examples
|
||||
f4pga build --flow ../.github/sftest.json
|
||||
|
||||
- name: '📤 Upload artifact: Arty 35 bitstream'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: arty_35-Bitstream-pyF4PGA
|
||||
path: f4pga-examples/build/arty_35/top.bit
|
||||
|
||||
PYTHONPATH:
|
||||
runs-on: ubuntu-latest
|
||||
name: '🐍 PYTHONPATH'
|
||||
env:
|
||||
F4PGA_INSTALL_DIR: /opt/f4pga
|
||||
FPGA_FAM: xc7
|
||||
|
||||
steps:
|
||||
|
||||
- name: 🧰 Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: 🚧 Test pyF4PGA (PYTHONPATH)
|
||||
run: |
|
||||
PYTHONPATH=$(pwd) python3 f4pga/__init__.py
|
||||
PYTHONPATH=$(pwd) python3 f4pga/__init__.py -h
|
||||
|
||||
|
||||
Tests:
|
||||
runs-on: ubuntu-latest
|
||||
name: '🐍 Python wrappers'
|
||||
name: '🐍 Python Tests'
|
||||
env:
|
||||
F4PGA_INSTALL_DIR: /opt/f4pga
|
||||
FPGA_FAM: xc7
|
||||
|
@ -229,3 +208,21 @@ jobs:
|
|||
|
||||
pip3 install -r ./test/requirements.txt
|
||||
pytest --verbose --capture=no -rA --color=yes test/
|
||||
|
||||
|
||||
PYTHONPATH:
|
||||
runs-on: ubuntu-latest
|
||||
name: '🐍 PYTHONPATH'
|
||||
env:
|
||||
F4PGA_INSTALL_DIR: /opt/f4pga
|
||||
FPGA_FAM: xc7
|
||||
|
||||
steps:
|
||||
|
||||
- name: 🧰 Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: 🚧 Test pyF4PGA (PYTHONPATH)
|
||||
run: |
|
||||
PYTHONPATH=$(pwd) python3 f4pga/__init__.py
|
||||
PYTHONPATH=$(pwd) python3 f4pga/__init__.py -h
|
Loading…
Reference in New Issue