From 0bd4a3bd8eb21bcd57881165525271d664400a7e Mon Sep 17 00:00:00 2001 From: Dominik Spicher Date: Fri, 15 May 2020 11:13:47 +0200 Subject: [PATCH] Remove Azure pipeline --- README.md | 1 - azure-pipelines.yml | 35 ----------------------------------- 2 files changed, 36 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/README.md b/README.md index 1811f00..3f90d3d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # QR Code Scanner [![GH Actions](https://github.com/juliuscanute/qr_code_scanner/workflows/dart/badge.svg)](https://github.com/juliuscanute/qr_code_scanner/actions) -[![Build Status](https://dev.azure.com/juliuscanute/spring/_apis/build/status/juliuscanute.qr_code_scanner?branchName=master)](https://dev.azure.com/juliuscanute/spring/_build/latest?definitionId=7&branchName=master) A QR code scanner that works on both iOS and Android by natively embedding the platform view within Flutter. The integration with Flutter is seamless, much better than jumping into a native Activity or a ViewController to perform the scan. diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index c345c14..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,35 +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 - -pr: - branches: - include: - - master - -pool: - name: 'Default' - -steps: -- script: | - cd example - $flutterPath/flutter build ios - displayName: 'Test iOS -- Build' - env: - flutterPath: $(flutterPath) -- script: | - cd example - $flutterPath/flutter packages get - $flutterPath/flutter build apk --target-platform android-arm,android-arm64 --split-per-abi - displayName: 'Test Android -- Build' - env: - flutterPath: $(flutterPath) -- script: | - $flutterPath/flutter pub pub publish --dry-run - displayName: 'Publish -- Dry Run' - env: - flutterPath: $(flutterPath) \ No newline at end of file