From 086e4534364aa28289bb8201c3975c7dd31cdb9f Mon Sep 17 00:00:00 2001 From: Evan Lojewski Date: Sat, 17 Apr 2021 16:42:54 -0600 Subject: [PATCH] ci: Build and prepare the fpga with the bootrom. --- .gitlab-ci.yml | 3 ++- build-ci.sh | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100755 build-ci.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a51a8c..2411b3e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,8 @@ variables: build1: stage: build - script: ./build.sh + tags: [versa_ecp5] + script: ./build-ci.sh artifacts: paths: diff --git a/build-ci.sh b/build-ci.sh new file mode 100755 index 0000000..ddc707e --- /dev/null +++ b/build-ci.sh @@ -0,0 +1,54 @@ +#!/bin/sh +################################################################################ +### +### @file build.sh +### +### @project bootrom +### +### @brief Top level build script. +### +################################################################################ +### +################################################################################ +### +### @copyright Copyright (c) 2021, Evan Lojewski +### @cond +### +### All rights reserved. +### +### Redistribution and use in source and binary forms, with or without +### modification, are permitted provided that the following conditions are met: +### 1. Redistributions of source code must retain the above copyright notice, +### this list of conditions and the following disclaimer. +### 2. Redistributions in binary form must reproduce the above copyright notice, +### this list of conditions and the following disclaimer in the documentation +### and/or other materials provided with the distribution. +### 3. Neither the name of the copyright holder nor the +### names of its contributors may be used to endorse or promote products +### derived from this software without specific prior written permission. +### +################################################################################ +### +### THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +### AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +### IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +### ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +### LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +### CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +### SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +### INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +### CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +### ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +### POSSIBILITY OF SUCH DAMAGE. +### @endcond +################################################################################ + +set -e + +SOURCE_DIR=`pwd` + +cd bootrom +./build.sh +cd ${SOURCE_DIR} + +./build.sh -DBOOTROM_TESTS=True -- 2.30.2