From af1202e379832cae59d2c332b2ff3212d7a5e3ea Mon Sep 17 00:00:00 2001 From: Joram Sibanda <82480625+Joramtech@users.noreply.github.com> Date: Fri, 7 Apr 2023 00:54:22 +0200 Subject: [PATCH 1/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000000..4a0ceec8759 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +stealth# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- main + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' From 289d82a1d5339385c438b3b5f466a13e046fd004 Mon Sep 17 00:00:00 2001 From: Joram Sibanda <82480625+Joramtech@users.noreply.github.com> Date: Wed, 26 Jul 2023 15:42:32 +0200 Subject: [PATCH 2/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines-1.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 azure-pipelines-1.yml diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml new file mode 100644 index 00000000000..b060d480edf --- /dev/null +++ b/azure-pipelines-1.yml @@ -0,0 +1,30 @@ +joramtech# Universal Windows Platform +# Build a Universal Windows Platform project using Visual Studio. +# Add steps that test and distribute an app, save build artifacts, and more: +# https://aka.ms/yaml + +trigger:a application download +- main + +pool: + vmImage: 'windows-latest' + +variables: + solution: '**/*.sln' + buildPlatform: 'x86|x64|ARM' + buildConfiguration: 'Release' + appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\' + +steps: +- task: NuGetToolInstaller@1 + +- task: NuGetCommand@2 + inputs: + restoreSolution: '$(solution)' + +- task: VSBuild@1 + inputs: + platform: 'x86' + solution: '$(solution)' + configuration: '$(buildConfiguration)' + msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'