azure-pipelines: remove

GHA is more or less the same now
This commit is contained in:
Christoph Reiter
2020-07-25 13:15:38 +02:00
parent a1b0ce19fb
commit 5933f4232c
2 changed files with 0 additions and 52 deletions

View File

@@ -7,8 +7,6 @@
-->
<a title="AppVeyor" href="https://ci.appveyor.com/project/Alexpux/MSYS2-packages"><img src="https://img.shields.io/appveyor/ci/Alexpux/MSYS2-packages/master.svg?logo=appveyor&logoColor=e8ecef&style=flat-square"></a><!--
-->
<a title="Azure DevOps" href="https://dev.azure.com/msys2/mingw/_build/latest?definitionId=5&branchName=master"><img src="https://img.shields.io/azure-devops/build/msys2/5ee43462-f2c2-45d5-8c1c-31fdb1fd15b4/5/master?style=flat-square&logo=azure-pipelines"></a><!--
-->
</p>
# MSYS2-packages

View File

@@ -1,50 +0,0 @@
trigger:
branches:
include:
- '*'
pr:
branches:
include:
- '*'
jobs:
- job: MSYS
timeoutInMinutes: 360
pool:
vmImage: vs2017-win2016
strategy:
maxParallel: 5
matrix:
x86_64:
MSYS_DIR: msys64
BASE_REPO: msys2-ci-base
steps:
- powershell: |
(New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2020-05-22/msys2-base-x86_64-20200522.sfx.exe", "sfx.exe")
displayName: Download MSYS2
- script: |
sfx.exe -y -o%CD:~0,2%\
%CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "pacman --noconfirm -Syuu"
%CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "pacman --noconfirm -Syuu"
displayName: Extract/Install/Update MSYS2
- script: |
%CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "pacman --noconfirm --needed -S git base base-devel msys2-devel"
displayName: Install Toolchain
- script: |
%CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "bash ci-build.sh"
displayName: CI-Build
env:
MSYSTEM: MSYS
CHERE_INVOKING: yes
BUILD_URL: dummy
DEPLOY_PROVIDER: bintray
BINTRAY_ACCOUNT: msys2
PACMAN_REPOSITORY_NAME: ci.msys
- task: PublishBuildArtifacts@1
displayName: Publish packages
continueOnError: true
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))
inputs:
pathtoPublish: $(Build.SourcesDirectory)/artifacts
artifactName: $(MSYS_DIR)