Compare commits

..

4 Commits

Author SHA1 Message Date
Friwi
72f7b99051 Update macosx_codesign.sh 2025-11-05 08:18:57 +01:00
Friwi
eba404fb0d Update install_macos_dependencies.sh 2025-11-05 08:08:24 +01:00
Friwi
0e3a94c5bf Update install_macos_dependencies.sh 2025-11-05 08:06:16 +01:00
Fritz Windisch
eb01c1e80f Change to corretto 2025-02-21 09:51:49 +01:00
3 changed files with 4 additions and 3 deletions

View File

@@ -206,7 +206,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
distribution: 'corretto'
- uses: actions/setup-python@v5
with:
python-version: '3.10.11'
@@ -276,7 +276,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
distribution: 'corretto'
- uses: actions/setup-python@v5
with:
python-version: '3.10.11'

View File

@@ -45,6 +45,7 @@ echo "Signing libraries and framework..."
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/$FRAMEWORKS_DIR/$FRAMEWORK_NAME/Libraries/libEGL.dylib"
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/$FRAMEWORKS_DIR/$FRAMEWORK_NAME/Libraries/libGLESv2.dylib"
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/$FRAMEWORKS_DIR/$FRAMEWORK_NAME/Libraries/libvk_swiftshader.dylib"
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/$FRAMEWORKS_DIR/$FRAMEWORK_NAME/Libraries/libcef_sandbox.dylib"
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/$FRAMEWORKS_DIR/$FRAMEWORK_NAME/Chromium Embedded Framework"
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/$FRAMEWORKS_DIR/$FRAMEWORK_NAME"
codesign --force --options runtime --entitlements "$ENTITLEMENTS_BROWSER" --sign "$2" --timestamp --verbose "$APP_DIR/$APP_NAME/Contents/Java/libjcef.dylib"

View File

@@ -3,7 +3,7 @@
PYTHON=python3
brew install ninja
brew install six
pip3 install --break-system-packages --user six
"$PYTHON" -m pip list
echo "from six.moves import configparser" | "$PYTHON" && echo "Success importing stuff from six moves python module"