aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/interchange_ci.yml
blob: 3de871980541232f8dec4b14a85f4ffc50e4d11c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: FPGA interchange CI tests

on: [push, pull_request]

jobs:
  Run-Tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        device: [xc7a35t, xc7a100t, xc7a200t, xc7z010]
    steps:

    - uses: actions/checkout@v2
      with:
        submodules: recursive

    - uses: actions/setup-python@v2

    - name: Install
      run: |
        sudo apt-get update
        sudo apt-get install git make cmake libboost-all-dev python3-dev libeigen3-dev tcl-dev clang bison flex swig

    - name: Execute build interchange script
      run: stdbuf -i0 -o0 -e0 ./.github/ci/build_interchange.sh

    - name: Run tests
      env:
        DEVICE: ${{ matrix.device }}
      run: |
        cd build
        make chipdb-$DEVICE-bin-check-test-data
        make chipdb-$DEVICE-bin-check
        make all-$DEVICE-tests -j`nproc`