From 447e1dc8db404f3eee768c5d44cea048081347a9 Mon Sep 17 00:00:00 2001 From: Andrea Bondavalli <56439183+bondagit@users.noreply.github.com> Date: Sat, 4 Feb 2023 18:04:42 +0100 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..15fd560 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,15 @@ +# C/C++ with GCC +# Build your C/C++ project with GCC using make. +# Add steps that publish test results, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- script: | + ./build.sh + displayName: 'build'