Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build flake for ddev #14808

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 3 additions & 19 deletions .github/workflows/build-ddev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,12 +210,7 @@ jobs:

windows-packaging:
name: Build Windows installers
if: >-
github.event_name == 'push'
&&
github.event.pull_request.head.repo.full_name == github.repository
&&
(github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
needs: binaries
runs-on: windows-2022

Expand Down Expand Up @@ -285,12 +280,7 @@ jobs:

macos-packaging:
name: Build macOS installer and sign/notarize artifacts
if: >-
github.event_name == 'push'
&&
github.event.pull_request.head.repo.full_name == github.repository
&&
(github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
needs: binaries
runs-on: macos-12

Expand All @@ -313,13 +303,7 @@ jobs:
run: brew install create-dmg

- name: Install rcodesign
env:
ARCHIVE_NAME: "apple-codesign-0.22.0-x86_64-apple-darwin"
run: >-
curl -L
"https://github.com/indygreg/apple-platform-rs/releases/download/apple-codesign%2F0.22.0/$ARCHIVE_NAME.tar.gz"
|
tar --strip-components=1 -xzf - -C /usr/local/bin "$ARCHIVE_NAME/rcodesign"
run: cargo install apple-codesign

- name: Download staged binaries
uses: actions/download-artifact@v3
Expand Down