Skip to content

Commit

Permalink
Merge pull request microsoft#2 from solytic/add-azure-pipelines
Browse files Browse the repository at this point in the history
Add Azure DevOps build and test pipeline
  • Loading branch information
moredatapls committed Jul 27, 2022
2 parents 9a07172 + 9ad7cda commit 838bdfe
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 26 deletions.
23 changes: 23 additions & 0 deletions .azuredevops/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java

trigger:
- master

pool:
vmImage: ubuntu-latest

steps:
- task: Maven@3
displayName: Maven Build and Test
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'test'
26 changes: 0 additions & 26 deletions .github/workflows/scala.yml

This file was deleted.

0 comments on commit 838bdfe

Please sign in to comment.