Skip to content

Commit

Permalink
Merge pull request #4302 from amaslenn/topic/azp-release-v1.7
Browse files Browse the repository at this point in the history
AZP: port release pipeline to v1.7.x
  • Loading branch information
yosefe authored Oct 19, 2019
2 parents 7bf663f + c009cb0 commit 740cbef
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .gitlab-ci.yml

This file was deleted.

42 changes: 42 additions & 0 deletions buildlib/azure-pipelines-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# See https://aka.ms/yaml

pr: none
trigger:
tags:
include:
- v*

resources:
containers:
- container: fedora
image: ucfconsort.azurecr.io/ucx/fedora:1
endpoint: ucfconsort_registry

stages:
- stage: Release
jobs:
- job: release
displayName: build tarball and source rpm
container: fedora
steps:
- bash: ./autogen.sh
displayName: Setup autotools

- bash: |
set -eE
gcc --version
./contrib/configure-release
./contrib/buildrpm.sh -s -t -b
displayName: Build tarball
- task: GithubRelease@0
displayName: Create GitHub Draft Release
inputs:
githubConnection: release
repositoryName: openucx/ucx
action: create
isDraft: true
addChangeLog: false
assets: |
./ucx-*.tar.gz
./rpm-dist/ucx-*.src.rpm

0 comments on commit 740cbef

Please sign in to comment.