From 92a58a2631a30ac3f4c0291ecd1f2f01a912b9e9 Mon Sep 17 00:00:00 2001 From: gatecat Date: Fri, 8 Apr 2022 14:05:03 +0100 Subject: ci: Restructure and move entirely to GH actions from Cirrus Signed-off-by: gatecat --- .github/ci/build_machxo2.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/ci/build_machxo2.sh (limited to '.github/ci/build_machxo2.sh') diff --git a/.github/ci/build_machxo2.sh b/.github/ci/build_machxo2.sh new file mode 100644 index 00000000..c81a538b --- /dev/null +++ b/.github/ci/build_machxo2.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +function get_dependencies { + : +} + +function build_nextpnr { + mkdir build + pushd build + cmake .. -DARCH=machxo2 -DTRELLIS_INSTALL_PREFIX=${GITHUB_WORKSPACE}/.trellis -DWERROR=on -DUSE_IPO=off + make nextpnr-machxo2 -j`nproc` + popd +} + +function run_tests { + : +} + +function run_archcheck { + : +} -- cgit v1.2.3