1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-17 21:27:38 +00:00
Files
YosysHQ.nextpnr/.github/ci/build_nexus.sh
2022-04-08 18:42:39 +01:00

24 lines
368 B
Bash

#!/bin/bash
function get_dependencies {
:
}
function build_nextpnr {
mkdir build
pushd build
cmake .. -DARCH=nexus -DOXIDE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/.prjoxide
make nextpnr-nexus -j`nproc`
popd
}
function run_tests {
:
}
function run_archcheck {
pushd build
./nextpnr-nexus --device LIFCL-40-9BG400CES --test
popd
}