-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de5529f
commit 7ebec2c
Showing
1 changed file
with
17 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,9 +89,12 @@ jobs: | |
mavenServiceConnections: SynapseML_PublicPackages-Feed-Connection | ||
- bash: | | ||
set -e | ||
sbt publishSigned | ||
sudo apt-get install graphviz doxygen -y | ||
source activate synapseml | ||
sbt packagePython | ||
sbt publishLocalSigned | ||
python tools/esrp/prepare_jar.py | ||
displayName: ESRP release | ||
displayName: ESRP release prep | ||
env: | ||
STORAGE-KEY: $(storage-key) | ||
NEXUS-UN: $(nexus-un) | ||
|
@@ -100,11 +103,20 @@ jobs: | |
PGP-PUBLIC: $(pgp-public) | ||
PGP-PW: $(pgp-pw) | ||
SYNAPSEML_ENABLE_PUBLISH: true | ||
- task: EsrpRelease@3 | ||
inputs: | ||
ConnectedServiceName: 'DataScienceESRPRelease' | ||
Intent: 'PackageDistribution' | ||
ContentType: 'Maven' | ||
PackageLocation: '/home/vsts/.ivy2/local/com.microsoft.azure/' | ||
Owners: '[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]' | ||
Approvers: '[email protected],[email protected],[email protected]' | ||
ServiceEndpointUrl: 'https://api.esrp.microsoft.com' | ||
MainPublisher: 'synapseml' | ||
DomainTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47' | ||
displayName: 'ESRP Publish Package' | ||
- bash: | | ||
set -e | ||
sudo apt-get install graphviz doxygen -y | ||
source activate synapseml | ||
sbt packagePython | ||
sbt publishBlob publishDocs publishR publishPython uploadNotebooks | ||
sbt genBuildInfo | ||
echo "##vso[task.uploadsummary]$(pwd)/target/Build.md" | ||
|