From 2a9407d0f39fe2d47a266d6d7bbabc698207541e Mon Sep 17 00:00:00 2001 From: sunnycarter <36891339+sunnycarter@users.noreply.github.com> Date: Tue, 22 Aug 2023 16:17:42 +0100 Subject: [PATCH] Remove pre-release build and lint files from release branch (#63) --- .github/workflows/BuildAOSMWheel.yml | 31 ---------------------- .github/workflows/CheckStyleAndLinting.yml | 18 ------------- 2 files changed, 49 deletions(-) delete mode 100644 .github/workflows/BuildAOSMWheel.yml delete mode 100644 .github/workflows/CheckStyleAndLinting.yml diff --git a/.github/workflows/BuildAOSMWheel.yml b/.github/workflows/BuildAOSMWheel.yml deleted file mode 100644 index 36ad8f82bbb..00000000000 --- a/.github/workflows/BuildAOSMWheel.yml +++ /dev/null @@ -1,31 +0,0 @@ -on: - push: - branches: - - add-aosm-extension - -jobs: - build_aosm: - runs-on: ubuntu-latest - container: mcr.microsoft.com/azure-cli/tools:latest - permissions: write-all - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - name: Build AOSM Wheel - run: | - # Pretend we have a valid git repo to satisfy azdev. - mkdir .git - azdev setup -r . - azdev extension build aosm - - name: Upload AOSM Wheel - uses: actions/upload-artifact@v3 - with: - name: aosm-extension - path: dist/*.whl - - name: Update Release - uses: pyTooling/Actions/releaser@r0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - files: | - dist/*.whl - tag: aosm-extension diff --git a/.github/workflows/CheckStyleAndLinting.yml b/.github/workflows/CheckStyleAndLinting.yml deleted file mode 100644 index 82e39b86e0b..00000000000 --- a/.github/workflows/CheckStyleAndLinting.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Style and Lint Check - -on: - pull_request: - types: [opened] - -jobs: - build_aosm: - runs-on: ubuntu-latest - container: mcr.microsoft.com/azure-cli/tools:latest - permissions: write-all - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - name: Check Style - run: azdev style aosm - - name: Check Linting - run: azdev linter aosm \ No newline at end of file