2020-12-08 07:36:23 -05:00
|
|
|
name: doc-test
|
|
|
|
|
2021-03-25 18:09:20 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
2020-12-08 07:36:23 -05:00
|
|
|
|
|
|
|
jobs:
|
2021-10-19 17:43:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
Matrix:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
matrix: ${{ steps.generate.outputs.matrix }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
2021-10-19 18:05:37 -04:00
|
|
|
- name: Setup repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-10-19 17:43:29 -04:00
|
|
|
- name: Generate examples matrix
|
|
|
|
id: generate
|
2021-10-19 18:05:37 -04:00
|
|
|
run: ./.github/scripts/generate_job_matrix.py
|
2021-10-19 17:43:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
Test:
|
|
|
|
needs: Matrix
|
2021-01-05 09:46:28 -05:00
|
|
|
runs-on: [self-hosted, Linux, X64]
|
2020-12-08 07:36:23 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-10-19 17:43:29 -04:00
|
|
|
include: ${{ fromJson(needs.Matrix.outputs.matrix) }}
|
|
|
|
|
2020-12-08 07:36:23 -05:00
|
|
|
env:
|
|
|
|
LANG: "en_US.UTF-8"
|
2021-01-05 09:46:28 -05:00
|
|
|
DEBIAN_FRONTEND: "noninteractive"
|
|
|
|
|
|
|
|
container: ${{matrix.os}}:${{matrix.os-version}}
|
2020-12-08 07:36:23 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Setup repository
|
|
|
|
uses: actions/checkout@v2
|
2021-10-25 10:14:04 -04:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-12-08 07:36:23 -05:00
|
|
|
|
2021-01-05 09:46:28 -05:00
|
|
|
- name: Install utils
|
|
|
|
if: ${{matrix.os == 'ubuntu' || matrix.os == 'debian'}}
|
|
|
|
run: apt -qqy update && apt -qqy install wget locales && locale-gen $LANG
|
2020-12-10 08:49:18 -05:00
|
|
|
|
2021-01-05 09:46:28 -05:00
|
|
|
- name: Install utils
|
|
|
|
if: ${{matrix.os == 'centos'}}
|
|
|
|
run: yum -y install wget
|
2020-12-08 07:36:23 -05:00
|
|
|
|
|
|
|
- name: Install tuttest
|
2020-12-10 08:49:18 -05:00
|
|
|
run: |
|
2021-01-19 16:52:16 -05:00
|
|
|
wget https://github.com/antmicro/tuttest/releases/download/v0.2-beta/tuttest -O /usr/bin/tuttest
|
2021-01-05 09:46:28 -05:00
|
|
|
chmod a+rx /usr/bin/tuttest
|
2020-12-08 07:36:23 -05:00
|
|
|
|
2020-12-10 08:49:18 -05:00
|
|
|
- name: Install SymbiFlow toolchain
|
2021-01-19 12:15:00 -05:00
|
|
|
run: bash .github/scripts/install-toolchain.sh ${{matrix.fpga-fam}} ${{matrix.os}}
|
2020-12-08 07:36:23 -05:00
|
|
|
|
|
|
|
- name: Build examples
|
2021-01-19 12:15:00 -05:00
|
|
|
run: bash .github/scripts/build-examples.sh ${{matrix.fpga-fam}} ${{matrix.example}}
|
2020-12-08 08:42:12 -05:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-12-10 08:49:18 -05:00
|
|
|
name: symbiflow-examples-bitstreams
|
2020-12-08 08:42:12 -05:00
|
|
|
path: |
|
|
|
|
**/*.bit
|
2021-01-15 16:21:18 -05:00
|
|
|
**/plot_*.svg
|