diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a51a8c3ba577d2502b70accc7dacde070702c3b..2411b3e2afacc2c4c7adb78263b4833e2c2e0cff 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 0000000000000000000000000000000000000000..ddc707e660db697b7f2774c949852cc74ff726cd --- /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