Merge pull request #311 from stefan-koch-sociomantic/add_beaver
Deploy tagged versions from CI
This commit is contained in:
commit
0b71891072
|
@ -4,3 +4,6 @@
|
||||||
[submodule "makd"]
|
[submodule "makd"]
|
||||||
path = makd
|
path = makd
|
||||||
url = https://github.com/sociomantic-tsunami/makd
|
url = https://github.com/sociomantic-tsunami/makd
|
||||||
|
[submodule "beaver"]
|
||||||
|
path = beaver
|
||||||
|
url = https://github.com/sociomantic-tsunami/beaver.git
|
||||||
|
|
27
.travis.yml
27
.travis.yml
|
@ -16,3 +16,30 @@ env:
|
||||||
- BUILD=dub
|
- BUILD=dub
|
||||||
|
|
||||||
script: ./.travis.sh
|
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
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 82f8c8f6bbd9f0fbd9753a134377bec134a5956c
|
|
@ -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
|
Loading…
Reference in New Issue