Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions deploy/pack-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,11 @@ elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
openssl aes-256-cbc -k "${SQUEAK_SIGN_PASSWORD}" -in "${path_p12}.enc" -out "${path_p12}" -d
macos_codesign "${APP_DIR}" "${path_cer}" "${path_p12}" "${SQUEAK_CERT_PASSWORD}" "${SQUEAK_SIGN_IDENTITY}"
elif [[ "${FLAVOR}" == "pharo"* ]]; then
# TODO: decrypt Pharo signing certificate and invoke macos_codesign to sign app bundle
# macos_codesign "${APP_DIR}" "${path_cer}" "${path_p12}" "${PHARO_CERT_PASSWORD}" "${PHARO_SIGN_IDENTITY}"
true
path_cer="${DEPLOY_DIR}/pharo/pharo.cer"
path_p12="${DEPLOY_DIR}/pharo/pharo.p12"
openssl aes-256-cbc -k "${PHARO_SIGN_PASSWORD}" -in "${path_cer}.enc" -out "${path_cer}" -d
openssl aes-256-cbc -k "${PHARO_SIGN_PASSWORD}" -in "${path_p12}.enc" -out "${path_p12}" -d
macos_codesign "${APP_DIR}" "${path_cer}" "${path_p12}" "${PHARO_CERT_PASSWORD}" "${PHARO_SIGN_IDENTITY}"
elif [[ "${FLAVOR}" == "newspeak"* ]]; then
NEW_APP_DIR="${PRODUCTS_DIR}/Newspeak.app"
mv "${APP_DIR}" "${NEW_APP_DIR}"
Expand Down
Binary file added deploy/pharo/pharo.cer.enc
Binary file not shown.
Binary file added deploy/pharo/pharo.p12.enc
Binary file not shown.