aboutsummaryrefslogtreecommitdiffstats
path: root/.github/ci/build_machxo2.sh
blob: c81a538ba6e0752c36d77a2b1a3abac463a3ca12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

function get_dependencies {
    :
}

function build_nextpnr {
    mkdir build
    pushd build
    cmake .. -DARCH=machxo2 -DTRELLIS_INSTALL_PREFIX=${GITHUB_WORKSPACE}/.trellis -DWERROR=on -DUSE_IPO=off
    make nextpnr-machxo2 -j`nproc`
    popd
}

function run_tests {
    :
}

function run_archcheck {
    :
}