From 8b18c354be419a2d3022a70d763fc7a5470fea44 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Thu, 17 Aug 2017 07:36:01 +0200 Subject: travis-ci: try build on macos x --- dist/linux/docker-buildtest.sh | 4 ++-- dist/linux/travis-ci.sh | 36 +++++++++++++++++++++--------------- 2 files changed, 23 insertions(+), 17 deletions(-) (limited to 'dist/linux') diff --git a/dist/linux/docker-buildtest.sh b/dist/linux/docker-buildtest.sh index a3f38a32c..f34fc246d 100755 --- a/dist/linux/docker-buildtest.sh +++ b/dist/linux/docker-buildtest.sh @@ -53,7 +53,7 @@ if [ -n "$GRAB_SRCS" ]; then p="$p && mv ghdl-master/* ./ && rm -rf ghdl-master" set +e - docker run --name ghdl_cmp -t "$DOCKER_IMG" sh -c "$p &&./dist/linux/buildtest.sh $ENABLECOLOR-t $TASK -b $BLD -f $PKG_FILE" + docker run --name ghdl_cmp -t "$DOCKER_IMG" sh -c "$p &&./dist/linux/buildtest.sh $ENABLECOLOR -t $TASK -b $BLD -f $PKG_FILE" docker cp "ghdl_cmp:/work/log.log" "./log.log" set -e docker cp "ghdl_cmp:/work/$PKG_FILE" ./ @@ -61,6 +61,6 @@ if [ -n "$GRAB_SRCS" ]; then else - docker run --rm -tv $(pwd):/work:Z -w="/work" "$DOCKER_IMG" sh -c "./dist/linux/buildtest.sh $ENABLECOLOR-t $TASK -b $BLD -f $PKG_FILE" + docker run --rm -tv $(pwd):/work:Z -w="/work" "$DOCKER_IMG" sh -c "./dist/linux/buildtest.sh $ENABLECOLOR -t $TASK -b $BLD -f $PKG_FILE" fi diff --git a/dist/linux/travis-ci.sh b/dist/linux/travis-ci.sh index c79ef222b..55f30d270 100755 --- a/dist/linux/travis-ci.sh +++ b/dist/linux/travis-ci.sh @@ -1,8 +1,28 @@ #! /bin/bash # This script is executed in the travis-ci environment. +. dist/ansi_color.sh +#disable_color + +# Display env (to debug) +printf "$ANSI_YELLOW[TRAVIS] Travis environment $ANSI_NOCOLOR\n" +env | grep TRAVIS + +PKG_SHORTCOMMIT="$(printf $TRAVIS_COMMIT | cut -c1-10)" +PKG_VER=`grep Ghdl_Ver src/version.in | sed -e 's/.*"\(.*\)";/\1/'` +PKG_TAG="$TRAVIS_TAG" +if [ -z "$TRAVIS_TAG" ]; then + PKG_TAG="$(date -u +%Y%m%d)-$PKG_SHORTCOMMIT"; +fi + +# OS-X + if [ "$TRAVIS_OS_NAME" = "osx" ]; then - echo "OS X build not yet supported" + ./dist/macosx/install-ada.sh + PATH=$PWD/gnat/bin:$PATH + DBLD=mcode + DDIST=macosx + ./dist/linux/buildtest.sh $ENABLE_COLOR -t 0 -b "$DBLD" -f "ghdl-$PKG_TAG-$DBLD-$DDIST.tgz" exit fi @@ -24,20 +44,6 @@ thismatrix=regular #--- -. dist/ansi_color.sh -#disable_color - -# Display env (to debug) -printf "$ANSI_YELLOW[TRAVIS] Travis environment $ANSI_NOCOLOR\n" -env | grep TRAVIS - -PKG_SHORTCOMMIT="$(printf $TRAVIS_COMMIT | cut -c1-10)" -PKG_VER=`grep Ghdl_Ver src/version.in | sed -e 's/.*"\(.*\)";/\1/'` -PKG_TAG="$TRAVIS_TAG" -if [ -z "$TRAVIS_TAG" ]; then - PKG_TAG="$(date -u +%Y%m%d)-$PKG_SHORTCOMMIT"; -fi - cloned=$(pwd) #### Per build function -- cgit v1.2.3