From 9bb46b98b474cacf3f21268e8962a7ecd6a2ec6d Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 29 Feb 2024 10:33:44 +0100 Subject: [PATCH] update ci build script --- .github/ci/build_himbaechel.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/ci/build_himbaechel.sh b/.github/ci/build_himbaechel.sh index 73db3b57..62e13390 100644 --- a/.github/ci/build_himbaechel.sh +++ b/.github/ci/build_himbaechel.sh @@ -7,13 +7,8 @@ function get_dependencies { function build_nextpnr { mkdir build pushd build - cmake .. -DARCH=himbaechel - make nextpnr-himbaechel bbasm -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 + cmake .. -DARCH=himbaechel -DHIMBAECHEL_EXAMPLE_DEVICES=example + make nextpnr-himbaechel chipdb-himbaechel-example -j`nproc` popd }