From d2859fbb41d2d24ed6afe2e55e51512e7906aaea Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 17 Nov 2024 00:53:32 -0500 Subject: [PATCH] Remove macos_workflow Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- .github/workflows/macos_workflow.yml | 44 ---------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/macos_workflow.yml diff --git a/.github/workflows/macos_workflow.yml b/.github/workflows/macos_workflow.yml deleted file mode 100644 index 8b2c63481..000000000 --- a/.github/workflows/macos_workflow.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: macOS-workflow - -on: - push: - branches: - - master - pull_request: - branches: - - '*' - -permissions: # limit the permissions of the GITHIUB_TOKEN to reading repository contents - contents: read - -jobs: - build: - permissions: - actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows - contents: read # for actions/checkout to fetch code - runs-on: macos-latest - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.12.1 - with: - access_token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v4 - - uses: gradle/wrapper-validation-action@v3 - - uses: actions/setup-java@v4 - with: - java-version: 15 - - uses: actions/cache@v4 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-2-gradle-${{ hashFiles('**/*.gradle*') }} - restore-keys: | - ${{ runner.os }}-2-gradle- - - - name: Gradle clean build - uses: gradle/gradle-build-action@v3.5.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - HEAD_REF: ${{ github.head_ref }} - with: - arguments: "clean build"