mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-29 08:10:29 -04:00
* runtime hardening * Notarization * Fix the parameters * Update sql-product-build-darwin.yml * Format * Change task name * Remove the array * Support new format * Use new format for notarizing too * Change timeouts to accommodate how long apple takes * Change timeout in minutes to 2 hours * Update sql-product-build-darwin.yml * Increase timeouts * Change the pipeline * Fix formatting * Fix formatting * Fix formatting * Fix formatting * Change path * Fix path for cleanup * Don't do hardening * Enable hardening again * Self sign * add display name * Change key identity * Deep codesign * Fix path * add extras * add hardening back * use ditto instead of zip per apple docs * Changing signing syntax * Don't deep sign * Use --deep and add new entitlement * Temporarily disable notarization * entitlements fix * Don't do runtime hardening for self sign * Will this fix codesign I wonder * codesigning * sign everything first * Change signing to delete bad files * remove xattr * Change the find command * Delete mssql and big-data-cluster * Stablize the signing * Bring in notarization changes
12 lines
388 B
Bash
Executable File
12 lines
388 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
REPO="$(pwd)"
|
|
|
|
# ensure drop directories exist
|
|
mkdir -p $REPO/.build/darwin/{archive,server}
|
|
|
|
# package Remote Extension Host
|
|
pushd .. && mv azuredatastudio-reh-darwin azuredatastudio-server-darwin && zip -Xry $REPO/.build/darwin/server/azuredatastudio-server-darwin.zip azuredatastudio-server-darwin && popd
|
|
|
|
node build/azure-pipelines/common/copyArtifacts.js
|