Add versions to azure pipelines
This commit is contained in:
parent
4ebfff755b
commit
13efe88735
3 changed files with 6 additions and 30 deletions
24
.travis.yml
24
.travis.yml
|
@ -1,24 +0,0 @@
|
||||||
language: csharp
|
|
||||||
mono: latest
|
|
||||||
dotnet: 2.0.0
|
|
||||||
dist: trusty
|
|
||||||
script:
|
|
||||||
- "./build.sh --BuildTarget=FullBuild"
|
|
||||||
deploy:
|
|
||||||
- provider: releases
|
|
||||||
skip_cleanup: true
|
|
||||||
api_key:
|
|
||||||
secure: rg2WI5q/uyxotAuUCMxv4L+kMVxd3Ge/1Oe7GytqDsdn/bW2HpxAG8CessB+nrQBKVSssOPU5puBG0c91aKcZFzWycZYN0AnUg8otILHBpJFg9A4igRPi4fAgdQodEXWAHuzeAP0EKl1c8RnBA5b4cHTsgZe/uy1r1rLg5PLA9ZKKCe/0kqFUQxwN3HvrysjvEyzS5fw5ILjwUZyRA+hzfBB5HD4Z7DkwKOmdOwdd9qNo4RxFVWIpUw7Fd3IaHDtjjqAJkZIwQA2+LL+4YBk+7reLGE/V0sDe3cK3rOfse/axQeD3ha1ASK4Q2Ye0yAfEKsxg3NrAPkPyF4CFhnTqtauwPKCEfkNyOlpum9T++2VepSN3qd3E58/K9aNmemilU+Z4KE4hMzJeY4OG3PBmSvp/F7ALNIBDL1BzltTCGbHX7vXKONKtRbDgUA6tX9qXxpf806KWfO7CpClibgLHGjF2jQOP0Eamn7vbCHCqbR8JLS5MolcsefLoatgg8zoK0670axrRIwV/UWnLSBHyo9rtOHnSBfh1r9TGOqO5h1ICa24nz6gUN1b4mP9B9nZsVzuWPWFSjJFPtmBOfOprLwP/xN6bwQgW3p4bVQLGF4/CuGRlnIhVl+hgFZNcobmkwyvFvAd2h/523KLUz0epNzYlk4vi5r1nP2vIIafLps=
|
|
||||||
file_glob: true
|
|
||||||
file: BuildOutput/NugetPackages/*
|
|
||||||
on:
|
|
||||||
branch: master
|
|
||||||
repo: GtkSharp/GtkSharp
|
|
||||||
tags: true
|
|
||||||
- provider: script
|
|
||||||
skip_cleanup: true
|
|
||||||
script: chmod +x pushnuget.sh && ./pushnuget.sh
|
|
||||||
on:
|
|
||||||
branch: master
|
|
||||||
repo: GtkSharp/GtkSharp
|
|
||||||
tags: true
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
variables:
|
||||||
|
versionbase: 3.22.25
|
||||||
|
increment: $[counter(variables['versionbase'], 1)]
|
||||||
|
version: $(versionbase).$(increment)
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branches:
|
branches:
|
||||||
|
@ -12,5 +16,5 @@ pool:
|
||||||
vmImage: 'ubuntu-latest'
|
vmImage: 'ubuntu-latest'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- script: ./build.sh --BuildTarget=FullBuild
|
- script: ./build.sh --BuildTarget=FullBuild --BuildVersion=$(version)
|
||||||
displayName: 'CAKE Script'
|
displayName: 'CAKE Script'
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
// VARS
|
// VARS
|
||||||
|
|
||||||
Settings.Cake = Context;
|
Settings.Cake = Context;
|
||||||
Settings.Version = "3.22.24.30";
|
Settings.Version = Argument("BuildVersion", "3.22.24.30");
|
||||||
Settings.BuildTarget = Argument("BuildTarget", "Default");
|
Settings.BuildTarget = Argument("BuildTarget", "Default");
|
||||||
Settings.Assembly = Argument("Assembly", "");
|
Settings.Assembly = Argument("Assembly", "");
|
||||||
var configuration = Argument("Configuration", "Release");
|
var configuration = Argument("Configuration", "Release");
|
||||||
|
@ -19,10 +19,6 @@ var list = new List<GAssembly>();
|
||||||
Task("Init")
|
Task("Init")
|
||||||
.Does(() =>
|
.Does(() =>
|
||||||
{
|
{
|
||||||
var version = System.Environment.GetEnvironmentVariable("TRAVIS_TAG");
|
|
||||||
if (!string.IsNullOrEmpty(version))
|
|
||||||
Settings.Version = version;
|
|
||||||
|
|
||||||
// Assign some common properties
|
// Assign some common properties
|
||||||
msbuildsettings = msbuildsettings.WithProperty("Version", Settings.Version);
|
msbuildsettings = msbuildsettings.WithProperty("Version", Settings.Version);
|
||||||
msbuildsettings = msbuildsettings.WithProperty("Authors", "'GtkSharp Contributors'");
|
msbuildsettings = msbuildsettings.WithProperty("Authors", "'GtkSharp Contributors'");
|
||||||
|
|
Loading…
Add table
Reference in a new issue