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

CI: add worker for M1 macOS runner #3009

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
Next Next commit
CI: add worker for M1 macOS runner
  • Loading branch information
frankmorgner committed Feb 1, 2024
commit ab91679830345f68facc03653861e38788c5b5d2
18 changes: 18 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,24 @@ jobs:
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
PASS_SECRETS_TAR_ENC: ${{ secrets.PASS_SECRETS_TAR_ENC }}

build-m1:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- run: .github/setup-macos.sh
env:
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
PASS_SECRETS_TAR_ENC: ${{ secrets.PASS_SECRETS_TAR_ENC }}
- run: .github/build.sh
env:
CODE_SIGN_IDENTITY: ${{ secrets.CODE_SIGN_IDENTITY }}
DEVELOPMENT_TEAM: ${{ secrets.DEVELOPMENT_TEAM }}
INSTALLER_SIGN_IDENTITY: ${{ secrets.INSTALLER_SIGN_IDENTITY }}
- run: .github/cleanup-macos.sh
env:
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
PASS_SECRETS_TAR_ENC: ${{ secrets.PASS_SECRETS_TAR_ENC }}

push-artifacts:
runs-on: macos-12
needs: [build]
Expand Down
Loading