From 297f7187d0853f4b6d9df3c24446f7a11681f1fd Mon Sep 17 00:00:00 2001 From: Andilun <8294494+Andilun@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:34:09 +0100 Subject: [PATCH] Remove Azure pipline Azure pipline fails because of missing permissions building to GAR https://dev.azure.com/statisticsnorway/Dapla/_build/results?buildId=80165&view=logs&j=a75df752-ddbf-5e85-4270-02a6c36e45c0&t=43f4af77-aa0e-5d23-c243-224ff6ce4eeb Building to GAR is already handled by Github actions so, this pipline should no longer be needed. --- azure-pipelines.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 18fe02f..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: $(Build.SourceBranch)-$(date:yyyyMMdd)$(rev:.r) -# Pipeline triggers on any branch and tag -trigger: - branches: - include: - - '*' - tags: - include: - - '*' - -resources: - repositories: - - repository: templates - type: github - name: statisticsnorway/azure-pipelines-templates - endpoint: statisticsnorway - -# Pipeline will be run on this base image -pool: - vmImage: 'ubuntu-latest' - -# Variables global to this pipeline -# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables -variables: - # Variables defined in Pipelines->Library->Variable Groups in your project in - # Azure Pipelines - - group: Hemmeligheter - # Variables defined here - - name: MAVEN_CACHE_FOLDER - value: $(Pipeline.Workspace)/.m2/repository - - name: MAVEN_OPTS - value: '-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)' - - -# Job which will run mvn build, mvn install and Sonar Analysis (if branch is master) -jobs: - - - template: java/library-complete-build.yml@templates - parameters: - artifactName: tink-fpe-java - mavenContainer: maven:3.8-openjdk-17 - checkStyleRunAnalysis: true - pmdRunAnalysis: true - sonarQubeRunAnalysis: false - sonarCloud: bipSonarCloud-Dapla