From c4e73358507fcdd6cdca21c3a460c323551b8709 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 23 Apr 2018 23:17:01 +0200 Subject: [PATCH 1/2] Deploy binaries to GitHub releases (Linux/MacOS) (#348) --- .travis.yml | 52 ++++++++++++++++++++++++++++++++++++++++++++++ makefile | 3 +++ release-windows.sh | 25 ++++++++++++++++++++++ release.sh | 23 ++++++++++++++++++++ 4 files changed, 103 insertions(+) create mode 100755 release-windows.sh create mode 100755 release.sh diff --git a/.travis.yml b/.travis.yml index 9f09a5e..1f553a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,3 +43,55 @@ jobs: on: tags: true # must be a git tag repo: dlang-community/dfmt # must be a tag on dlang-community + - stage: GitHub Release + #if: tag IS present + d: ldc-1.8.0 + os: linux + script: echo "Deploying to GitHub releases ..." && ./release.sh + deploy: + provider: releases + api_key: $GH_REPO_TOKEN + file_glob: true + file: bin/dfmt-*.tar.gz + skip_cleanup: true + on: + repo: dlang-community/dfmt + tags: true + - stage: GitHub Release + #if: tag IS present + d: ldc-1.8.0 + os: osx + script: echo "Deploying to GitHub releases ..." && ./release.sh + deploy: + provider: releases + api_key: $GH_REPO_TOKEN + file_glob: true + file: bin/dfmt-*.tar.gz + skip_cleanup: true + on: + repo: dlang-community/dfmt + 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/dfmt-.*.zip + skip_cleanup: true + on: + repo: dlang-community/dfmt + tags: true +stages: + - name: test + if: type = pull_request or (type = push and branch = master) diff --git a/makefile b/makefile index 47536f8..e67be44 100644 --- a/makefile +++ b/makefile @@ -44,3 +44,6 @@ pkg: dmd clean: $(RM) bin/dfmt + +release: + ./release.sh diff --git a/release-windows.sh b/release-windows.sh new file mode 100755 index 0000000..c482d42 --- /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="dfmt-$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" dfmt.exe diff --git a/release.sh b/release.sh new file mode 100755 index 0000000..1d345fc --- /dev/null +++ b/release.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +set -eux -o pipefail +VERSION=$(git describe --abbrev=0 --tags) +ARCH="${ARCH:-64}" +LDC_FLAGS=() +unameOut="$(uname -s)" +case "$unameOut" in + Linux*) OS=linux; LDC_FLAGS=("-flto=full" "-linker=gold" "-static") ;; + Darwin*) OS=osx; LDC_FLAGS+=("-L-macosx_version_min" "-L10.7" "-L-lcrt1.o"); ;; + *) echo "Unknown OS: $unameOut"; exit 1 +esac + +case "$ARCH" in + 64) ARCH_SUFFIX="x86_64";; + 32) ARCH_SUFFIX="x86";; + *) echo "Unknown ARCH: $ARCH"; exit 1 +esac + +archiveName="dfmt-$VERSION-$OS-$ARCH_SUFFIX.tar.gz" + +echo "Building $archiveName" +${MAKE:-make} ldc LDC_FLAGS="${LDC_FLAGS[*]}" +tar cvfz "bin/$archiveName" -C bin dfmt From c2aea82395d951796f38cfd43fad32ac7ce08b40 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Tue, 8 May 2018 23:43:41 +0200 Subject: [PATCH 2/2] Update Windows Travis Deploy Regex (#354) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1f553a3..462998e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -87,7 +87,7 @@ jobs: provider: releases api_key: $GH_REPO_TOKEN file_glob: true - file: bin/dfmt-.*.zip + file: bin/dfmt-*.zip skip_cleanup: true on: repo: dlang-community/dfmt