mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-11-28 02:49:22 +08:00
Compare commits
15 Commits
1.0.56
...
test-flyci
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c48f8b02bd | ||
|
|
243ac9c37d | ||
|
|
af60c79e48 | ||
|
|
39359a893e | ||
|
|
e4f8565721 | ||
|
|
be672489ad | ||
|
|
ff5fc9020a | ||
|
|
64bb73c837 | ||
|
|
47ff1bd3ea | ||
|
|
e9aeb06788 | ||
|
|
cf017d26fe | ||
|
|
3c775d3765 | ||
|
|
1a11a80d67 | ||
|
|
4cea794a99 | ||
|
|
5b834e3e56 |
8
.github/workflows/build-macosx-amd64.yml
vendored
8
.github/workflows/build-macosx-amd64.yml
vendored
@@ -14,7 +14,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build-macosx-amd64:
|
||||
runs-on: macos-12
|
||||
runs-on: flyci-macos-large-latest-m1
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
-
|
||||
@@ -25,7 +25,7 @@ jobs:
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '8'
|
||||
java-version: '11'
|
||||
distribution: 'adopt'
|
||||
- name: Install Apple certificate
|
||||
env:
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
|
||||
|
||||
# import certificate from secrets
|
||||
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
|
||||
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
|
||||
|
||||
# create temporary keychain
|
||||
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
|
||||
# import api key from secrets
|
||||
mkdir "${HOME}/private_keys"
|
||||
echo -n "$APPLE_API_KEY_BASE64" | base64 --decode --output "${HOME}/private_keys/AuthKey_$APPLE_API_KEY_NAME.p8"
|
||||
echo -n "$APPLE_API_KEY_BASE64" | base64 --decode -o "${HOME}/private_keys/AuthKey_$APPLE_API_KEY_NAME.p8"
|
||||
-
|
||||
name: Build
|
||||
run: |
|
||||
|
||||
@@ -53,9 +53,6 @@ if [ ! -d "jcef_build" ]; then
|
||||
fi
|
||||
cd jcef_build
|
||||
|
||||
# Reinstall "six" python package to fix broken builds on amd64
|
||||
pip install --ignore-installed six
|
||||
|
||||
# MacOS: Generate amd64/arm64 Makefiles.
|
||||
if [ ${TARGETARCH} == 'amd64' ]; then
|
||||
cmake -G "Ninja" -DPROJECT_ARCH="x86_64" -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..
|
||||
|
||||
Reference in New Issue
Block a user