diff --git a/.github/workflows/macos-build-and-test.yml b/.github/workflows/macos-build-and-test.yml index 9610fc4cbadd0..f6c59d4910f06 100644 --- a/.github/workflows/macos-build-and-test.yml +++ b/.github/workflows/macos-build-and-test.yml @@ -5,6 +5,7 @@ on: jobs: build: name: macOS Build and Test + timeout-minutes: 60 runs-on: macos-14 strategy: matrix: @@ -41,7 +42,7 @@ jobs: - name: Install Homebrew dependencies run: | - brew install inkscape + brew install homebrew/cask/inkscape - name: Download Craft run: | @@ -61,7 +62,7 @@ jobs: - name: Build client run: | - python "${{ env.CRAFT_MASTER_LOCATION }}/CraftMaster.py" --config "${{ env.CRAFT_MASTER_CONFIG }}" --target ${{ env.CRAFT_TARGET }} -c --src-dir ${{ github.workspace }} ${{ env.CRAFT_BLUEPRINT_OPTIONS }} nextcloud-client + python "${{ env.CRAFT_MASTER_LOCATION }}/CraftMaster.py" --config "${{ env.CRAFT_MASTER_CONFIG }}" --target ${{ env.CRAFT_TARGET }} -c --options nextcloud-client.srcDir=${{ github.workspace }} ${{ env.CRAFT_BLUEPRINT_OPTIONS }} nextcloud-client - name: Run tests run: |