From 237f21a5bc9a64b57cc52806555329512c70463b Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Fri, 29 Mar 2024 15:10:21 +0000 Subject: [PATCH] chore(ci): disable broken MacOS builds --- .github/workflows/build.yaml | 68 ++++++++++++++++++------------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d63b6c6..ab96de7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -2,42 +2,42 @@ name: Package on: [push] jobs: - build-macos: +# build-macos: - runs-on: macos-latest - timeout-minutes: 15 - strategy: - fail-fast: false - matrix: - python-version: ['3.9', '3.11'] - node-version: ['20'] +# runs-on: macos-latest +# timeout-minutes: 15 +# strategy: +# fail-fast: false +# matrix: +# python-version: ['3.9', '3.11'] +# node-version: ['20'] - steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - uses: actions/checkout@v2 - - name: Set up Node ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - name: Build .app - run: | - npm run presenter-make - build/build-macos.sh - zip -r build/output/BAPSicle.zip build/output/BAPSicle.app - - name: Extract branch name - shell: bash - run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})" - id: extract_branch - - name: Archive Build - uses: actions/upload-artifact@v2 - with: - name: BAPSicle-${{ steps.extract_branch.outputs.branch }}-${{github.sha}}-MacOS - path: | - build/output/BAPSicle.zip +# steps: +# - uses: actions/checkout@v2 +# - name: Set up Python ${{ matrix.python-version }} +# uses: actions/setup-python@v2 +# with: +# python-version: ${{ matrix.python-version }} +# - uses: actions/checkout@v2 +# - name: Set up Node ${{ matrix.node-version }} +# uses: actions/setup-node@v2 +# with: +# node-version: ${{ matrix.node-version }} +# - name: Build .app +# run: | +# npm run presenter-make +# build/build-macos.sh +# zip -r build/output/BAPSicle.zip build/output/BAPSicle.app +# - name: Extract branch name +# shell: bash +# run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})" +# id: extract_branch +# - name: Archive Build +# uses: actions/upload-artifact@v2 +# with: +# name: BAPSicle-${{ steps.extract_branch.outputs.branch }}-${{github.sha}}-MacOS +# path: | +# build/output/BAPSicle.zip build-ubuntu: