nextpnr/.github/ci/build_mistral.sh
gatecat bcc5158eab ci: Bump mistral version
Signed-off-by: gatecat <gatecat@ds0.me>
2021-06-05 13:01:49 +01:00

25 lines
519 B
Bash

#!/bin/bash
function get_dependencies {
# Fetch mistral
mkdir -p ${MISTRAL_PATH}
git clone --recursive https://github.com/Ravenslofty/mistral.git ${MISTRAL_PATH}
pushd ${MISTRAL_PATH}
git reset --hard ${MISTRAL_REVISION}
popd
}
function build_nextpnr {
mkdir build
pushd build
cmake .. -DARCH=mistral -DMISTRAL_ROOT=${MISTRAL_PATH}
make nextpnr-mistral -j`nproc`
popd
}
function run_archcheck {
pushd build
./nextpnr-mistral --device 5CEBA2F17A7 --test
popd
}