diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index fffcf45..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Build clap-saw-demo - -pr: - - main - -jobs: - - - job: Build - strategy: - matrix: - mac: - imageName: 'macos-10.15' - isMac: True - win: - imageName: 'windows-2019' - isWindows: True - lin: - imageName: 'ubuntu-20.04' - isLinux: True - - pool: - vmImage: $(imageName) - - steps: - - checkout: self - fetchDepth: 1 - - - bash: | - git submodule update --init --recursive - cmake -Bbuild -DCMAKE_BUILD_TYPE=Release - displayName: Submodules and First Cmake - - - bash: | - cmake --build build --target clap-info - cmake --build build --target clap-info-zip - ls -al build/installer - displayName: Build clap-info