nextpnr/.github/ci/build_himbaechel.sh

24 lines
382 B
Bash
Raw Normal View History

#!/bin/bash
function get_dependencies {
:
}
function build_nextpnr {
mkdir build
pushd build
2024-02-29 17:33:44 +08:00
cmake .. -DARCH=himbaechel -DHIMBAECHEL_EXAMPLE_DEVICES=example
make nextpnr-himbaechel chipdb-himbaechel-example -j`nproc`
popd
}
function run_tests {
:
}
function run_archcheck {
pushd build
./nextpnr-himbaechel --device EXAMPLE --test
popd
}