aboutsummaryrefslogtreecommitdiffstats
path: root/.github/ci/build_ecp5.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/ci/build_ecp5.sh')
-rw-r--r--.github/ci/build_ecp5.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/ci/build_ecp5.sh b/.github/ci/build_ecp5.sh
new file mode 100644
index 00000000..2d09a6f6
--- /dev/null
+++ b/.github/ci/build_ecp5.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+function get_dependencies {
+ :
+}
+
+function build_nextpnr {
+ mkdir build
+ pushd build
+ cmake .. -DARCH=ecp5 -DTRELLIS_INSTALL_PREFIX=${GITHUB_WORKSPACE}/.trellis -DWERROR=on -DBUILD_GUI=on -DUSE_IPO=off
+ make nextpnr-ecp5 -j`nproc`
+ popd
+}
+
+function run_tests {
+ export PATH=${GITHUB_WORKSPACE}/.trellis/bin:${GITHUB_WORKSPACE}/.yosys/bin:$PATH
+ make -j $(nproc) -C tests/ecp5/regressions NPNR=$(pwd)/build/nextpnr-ecp5
+}
+
+function run_archcheck {
+ pushd build
+ ./nextpnr-ecp5 --um5g-25k --package CABGA381 --test
+ popd
+}