From 3dd66bc07cd07eb4953d6cc97586267e74e0ff26 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Fri, 6 Apr 2018 07:04:34 +0200 Subject: [PATCH] Build binaries for Windows --- .travis.yml | 21 +++++++++++++++++++++ release-windows.sh | 25 +++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100755 release-windows.sh diff --git a/.travis.yml b/.travis.yml index 3535085..f5c3124 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,6 +43,27 @@ jobs: on: repo: dlang-community/D-Scanner tags: true + - stage: GitHub Release + #if: tag IS present + d: dmd + os: linux + language: generic + sudo: yes + script: echo "Deploying to GitHub releases ..." && ./release-windows.sh + addons: + apt: + packages: + - p7zip-full + - wine + deploy: + provider: releases + api_key: $GH_REPO_TOKEN + file_glob: true + file: bin/dscanner.exe + skip_cleanup: true + on: + repo: dlang-community/D-Scanner + tags: true stages: - name: test if: type = pull_request or (type = push and branch = master) diff --git a/release-windows.sh b/release-windows.sh new file mode 100755 index 0000000..cd493a9 --- /dev/null +++ b/release-windows.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +# Build the Windows binaries under Linux (requires wine) +set -eux -o pipefail +VERSION=$(git describe --abbrev=0 --tags) +OS=windows +ARCH_SUFFIX="x86" + +# Allow the script to be run from anywhere +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +# Step 1: download the DMD binaries +if [ ! -d dmd2 ] ; then + wget http://downloads.dlang.org/releases/2.x/2.079.0/dmd.2.079.0.windows.7z + 7z x dmd.2.079.0.windows.7z > /dev/null +fi + +# Step 2: Run DMD via wineconsole +archiveName="dscanner-$VERSION-$OS-$ARCH_SUFFIX.zip" +echo "Building $archiveName" +mkdir -p bin +DC="$DIR/dmd2/windows/bin/dmd.exe" wine cmd /C build.bat + +cd bin +zip "$archiveName" dscanner.exe