update ci build script

This commit is contained in:
Miodrag Milanovic 2024-02-29 10:33:44 +01:00 committed by myrtle
parent 1f25f2067a
commit 9bb46b98b4

View File

@ -7,13 +7,8 @@ function get_dependencies {
function build_nextpnr { function build_nextpnr {
mkdir build mkdir build
pushd build pushd build
cmake .. -DARCH=himbaechel cmake .. -DARCH=himbaechel -DHIMBAECHEL_EXAMPLE_DEVICES=example
make nextpnr-himbaechel bbasm -j`nproc` make nextpnr-himbaechel chipdb-himbaechel-example -j`nproc`
# We'd ideally use pypy3 for speed (as works locally), but the version
# our CI Ubuntu provides doesn't like some of the typing stuff
python3 ../himbaechel/uarch/example/example_arch_gen.py ./example.bba
mkdir -p share/himbaechel/example
./bba/bbasm --l ./example.bba share/himbaechel/example/example.bin
popd popd
} }