From 633130b5d9d95ab9306ba42c0dfe66e590a4810b Mon Sep 17 00:00:00 2001 From: Michael Scrivo Date: Sun, 3 Nov 2024 17:28:31 -0500 Subject: [PATCH] Remove azure pipelines --- OutlookDesktop.sln | 2 +- azure-pipelines.yml | 68 --------------------------------------------- 2 files changed, 1 insertion(+), 69 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/OutlookDesktop.sln b/OutlookDesktop.sln index 7c51521..39e7d96 100644 --- a/OutlookDesktop.sln +++ b/OutlookDesktop.sln @@ -6,7 +6,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OotD.x64", "OotD.x64\OotD.x EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Global", "Global", "{07B2D199-0589-433B-8C1F-A8B3BF22D4E0}" ProjectSection(SolutionItems) = preProject - azure-pipelines.yml = azure-pipelines.yml + .github\workflows\build.yml = .github\workflows\build.yml .github\workflows\codeql-analysis.yml = .github\workflows\codeql-analysis.yml LICENSE = LICENSE ServerStaging\ootdAppcast.xml = ServerStaging\ootdAppcast.xml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index d34649f..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,68 +0,0 @@ -trigger: -- main - -pool: - vmImage: 'windows-latest' - -variables: - Major-Minor: 4.2 - Revision: $[ counter(variables['Major-Minor'],0) ] - BuildConfiguration: 'Release' - -name: $(Major-Minor).$(Revision) - -steps: -- checkout: self - submodules: 'true' - -- task: UseDotNet@2 - inputs: - packageType: 'sdk' - version: '9.0.100-rc.1.24452.12' - includePreviewVersions: true - -- task: DotNetCoreCLI@2 - inputs: - command: 'build' - feedsToUse: 'select' - versioningScheme: byBuildNumber - arguments: '--configuration $(BuildConfiguration) -p:Version=$(Build.BuildNumber);FileVersion=$(Build.BuildNumber)' - -- task: codesigning@2 - inputs: - name: 'Sign exe' - secureFileId: 'ootd.pfx' - signCertPassword: $(pfx_password) - files: 'OotD.Launcher\bin\Release\net9.0-windows7.0\OotD*.exe' - timeServer: 'http://timestamp.digicert.com' - hashingAlgorithm: 'SHA256' - signToolLocationMethod: 'latest' - -- task: codesigning@2 - inputs: - name: 'Sign dlls' - secureFileId: 'ootd.pfx' - signCertPassword: $(pfx_password) - files: 'OotD.Launcher\bin\Release\net9.0-windows7.0\OotD*.dll' - timeServer: 'http://timestamp.digicert.com' - hashingAlgorithm: 'SHA256' - signToolLocationMethod: 'latest' - -- task: CmdLine@2 - inputs: - script: 'iscc /Q "Setup Script.iss"' - -- task: codesigning@2 - inputs: - secureFileId: 'ootd.pfx' - signCertPassword: $(pfx_password) - files: 'serverStaging/*.exe' - timeServer: 'http://timestamp.digicert.com' - hashingAlgorithm: 'SHA256' - signToolLocationMethod: 'latest' - -- task: PublishBuildArtifacts@1 - inputs: - PathtoPublish: 'ServerStaging' - ArtifactName: 'artifact' - publishLocation: 'Container'