From 60f416522a9bdeca5f622014eed17a237974720e Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Wed, 16 Sep 2020 19:25:03 +0200 Subject: [PATCH] Removed RPI32 pipeline temporarily --- azure-pipelines/azure-pipeline-rpi32.yml | 34 ------------------------ 1 file changed, 34 deletions(-) delete mode 100644 azure-pipelines/azure-pipeline-rpi32.yml diff --git a/azure-pipelines/azure-pipeline-rpi32.yml b/azure-pipelines/azure-pipeline-rpi32.yml deleted file mode 100644 index 6df6f6e7..00000000 --- a/azure-pipelines/azure-pipeline-rpi32.yml +++ /dev/null @@ -1,34 +0,0 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - -trigger: -- master - -pool: RPI-32 - -jobs: -- job: Build - strategy: - matrix: - RPI4-DMX: - platform: 'rpi4' - RPI4-SDL2: - platform: 'rpi4-sdl2' - RPI3-DMX: - platform: 'rpi3' - RPI3-SDL2: - platform: 'rpi3-sdl2' - RPI2-DMX: - platform: 'rpi2' - RPI2-SDL2: - platform: 'rpi2-sdl2' - RPI1-DMX: - platform: 'rpi1' - RPI1-SDL2: - platform: 'rpi1-sdl2' - - steps: - - script: make -j4 PLATFORM=$(platform) - displayName: 'Compile $(platform) target'