From ec5f9604cd62835c9d250cd62d39250db03bc244 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 22 Dec 2022 13:46:49 +0100 Subject: [PATCH] devops: set up CI with Azure Pipelines (#1146) Co-authored-by: Yury Semikhatsky --- azure-pipelines.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..a1a0d01b --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,11 @@ +trigger: +- main + +pool: + vmImage: ubuntu-22.04 + +steps: +- script: bash ./scripts/download_driver_for_all_platforms.sh + +- script: mvn -B install -D skipTests --no-transfer-progress + displayName: 'Build & Install'