build-macosx-amd64 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-macosx-amd64 | |
on: | |
workflow_dispatch: | |
inputs: | |
repo: | |
description: 'Git repository to clone' | |
required: true | |
default: 'https://bitbucket.org/chromiumembedded/java-cef.git' | |
ref: | |
description: 'Git commit id to checkout' | |
required: true | |
default: 'master' | |
jobs: | |
build-macosx-amd64: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- | |
name: Setup environment | |
run: | | |
chmod +x scripts/install_macos_dependencies.sh | |
./scripts/install_macos_dependencies.sh | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10.11' | |
- name: Install Apple certificate | |
env: | |
BUILD_CERTIFICATE_BASE64: ${{ secrets.APPLE_BUILD_CERTIFICATE_BASE64 }} | |
P12_PASSWORD: ${{ secrets.APPLE_P12_PASSWORD }} | |
KEYCHAIN_PASSWORD: ${{ secrets.APPLE_KEYCHAIN_PASSWORD }} | |
run: | | |
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 | |
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db | |
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH | |
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | |
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH | |
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | |
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH | |
security set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | |
security list-keychain -d user -s $KEYCHAIN_PATH | |
- | |
name: Build | |
run: | | |
chmod +x compile_macosx.sh | |
./compile_macosx.sh amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" ${{ secrets.APPLE_TEAM_NAME }} ${{ secrets.APPLE_API_ID }} ${{ secrets.APPLE_API_PASS }} | |
- name: Clean up keychain | |
if: ${{ always() }} | |
run: | | |
security delete-keychain $RUNNER_TEMP/app-signing.keychain-db | |
rm -rf "${HOME}/private_keys" | |
- | |
name: Export artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: macosx-amd64.tar.gz | |
path: out/binary_distrib.tar.gz | |