Merge pull request #311 from stefan-koch-sociomantic/add_beaver

Deploy tagged versions from CI
This commit is contained in:
Sebastian Wilzbach 2018-01-25 18:49:32 +01:00 committed by GitHub
commit 0b71891072
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 0 deletions

3
.gitmodules vendored
View File

@ -4,3 +4,6 @@
[submodule "makd"]
path = makd
url = https://github.com/sociomantic-tsunami/makd
[submodule "beaver"]
path = beaver
url = https://github.com/sociomantic-tsunami/beaver.git

View File

@ -16,3 +16,30 @@ env:
- BUILD=dub
script: ./.travis.sh
jobs:
include:
- stage: Build & Upload Package
if: tag IS present
# Which package to deploy
env:
- DMD=2.076.*
- DIST=xenial
- PATH="$(git config -f .gitmodules submodule.beaver.path)/bin:$PATH"
language: generic
sudo: required
services:
- docker
git:
submodules: false
before_install: git submodule update --init
install: beaver dlang install
script:
- beaver dlang make pkg
deploy:
provider: script
script: beaver bintray upload build/last/pkg/*.deb
skip_cleanup: true
on:
tags: true # must be a git tag
repo: dlang-community/dfmt # must be a tag on dlang-community

1
beaver Submodule

@ -0,0 +1 @@
Subproject commit 82f8c8f6bbd9f0fbd9753a134377bec134a5956c

6
beaver.Dockerfile Normal file
View File

@ -0,0 +1,6 @@
# Copyright sociomantic labs GmbH 2017.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
FROM sociomantictsunami/dlang:v4