From 83560fffa7a59c1b4426da7a9eda70f759af6573 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Mon, 24 Jan 2022 19:25:39 -0500 Subject: [PATCH] Move SwiftLint Analyze CI job to GitHub Actions (#3820) --- .github/workflows/analyze.yml | 17 +++++++++++++++++ azure-pipelines.yml | 9 --------- 2 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/analyze.yml diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml new file mode 100644 index 000000000..9742b2762 --- /dev/null +++ b/.github/workflows/analyze.yml @@ -0,0 +1,17 @@ +name: Analyze + +on: + push: + branches: [master] + pull_request: + branches: ['*'] + +jobs: + analyze: + name: Analyze + runs-on: macos-latest + env: + DEVELOPER_DIR: /Applications/Xcode_13.2.1.app + steps: + - uses: actions/checkout@v2 + - run: make analyze diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ec362725e..ef4d568bc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,15 +30,6 @@ jobs: testResultsFiles: build/reports/** condition: succeededOrFailed() -- job: Analyze - pool: - vmImage: 'macOS-11' - variables: - DEVELOPER_DIR: /Applications/Xcode_13.0.app - steps: - - script: make analyze - displayName: Run SwiftLint Analyze - - job: TSan pool: vmImage: 'macOS-11'