Skip to content

Commit 5608879

Browse files
mbwhitejt-nti
authored andcommitted
Temporarily remove nightly publish & Fix PR build
(turn off the .net check forcibly) Signed-off-by: Matthew B White <[email protected]>
1 parent ff9e936 commit 5608879

File tree

2 files changed

+23
-20
lines changed

2 files changed

+23
-20
lines changed

ci/azure-pipelines.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -207,23 +207,23 @@ stages:
207207
OSSRH_USER: $(OSSRH-User)
208208
OSSRH_PASSWORD: $(OSSRH-Password)
209209
210-
#
211-
- stage: Publish_tag_nightly
212-
condition: and(succeeded('Build_and_test'), eq(variables['Build.Reason'], 'Schedule')) # only run on the scheduled builds
213-
jobs:
214-
- job: jar_publish
215-
steps:
216-
- template: templates/build-data.yml
217-
- task: DownloadSecureFile@1
218-
name: keyring
219-
inputs:
220-
secureFile: secring.gpg
221-
- script: |
222-
./gradlew -PNIGHTLY=true -Psigning.keyId=${SIGNING_ID} -Psigning.password=${SIGNING_PASSWORD} -Psigning.secretKeyRingFile=${KEYRING_FILE} -PartifactoryUsername=${ARTIFACTORY_USER} -PartifactoryhPassword=${ARTIFACTORY_PASSWORD} publishAllPublicationsToReleaseRepository
223-
./gradlew -PNIGHTLY=true -Psigning.keyId=${SIGNING_ID} -Psigning.password=${SIGNING_PASSWORD} -Psigning.secretKeyRingFile=${KEYRING_FILE} -PartifactoryUsername=${ARTIFACTORY_USER} -PartifactoryhPassword=${ARTIFACTORY_PASSWORD} publishAllPublicationsToSnapshotRepository
224-
env:
225-
SIGNING_ID: $(JAR-Signing-Id)
226-
SIGNING_PASSWORD: $(JAR-Signing-Password)
227-
KEYRING_FILE: $(keyring.secureFilePath)
228-
ARTIFACTORY_USER: $(ARTIFACTORY-User)
229-
ARTIFACTORY_PASSWORD: $(ARTIFACTORY-Password)
210+
# will re-enable when we get a proper userid/password
211+
# - stage: Publish_tag_nightly
212+
# condition: and(succeeded('Build_and_test'), eq(variables['Build.Reason'], 'Schedule')) # only run on the scheduled builds
213+
# jobs:
214+
# - job: jar_publish
215+
# steps:
216+
# - template: templates/build-data.yml
217+
# - task: DownloadSecureFile@1
218+
# name: keyring
219+
# inputs:
220+
# secureFile: secring.gpg
221+
# - script: |
222+
# ./gradlew -PNIGHTLY=true -Psigning.keyId=${SIGNING_ID} -Psigning.password=${SIGNING_PASSWORD} -Psigning.secretKeyRingFile=${KEYRING_FILE} -PartifactoryUsername=${ARTIFACTORY_USER} -PartifactoryhPassword=${ARTIFACTORY_PASSWORD} publishAllPublicationsToReleaseRepository
223+
# ./gradlew -PNIGHTLY=true -Psigning.keyId=${SIGNING_ID} -Psigning.password=${SIGNING_PASSWORD} -Psigning.secretKeyRingFile=${KEYRING_FILE} -PartifactoryUsername=${ARTIFACTORY_USER} -PartifactoryhPassword=${ARTIFACTORY_PASSWORD} publishAllPublicationsToSnapshotRepository
224+
# env:
225+
# SIGNING_ID: $(JAR-Signing-Id)
226+
# SIGNING_PASSWORD: $(JAR-Signing-Password)
227+
# KEYRING_FILE: $(keyring.secureFilePath)
228+
# ARTIFACTORY_USER: $(ARTIFACTORY-User)
229+
# ARTIFACTORY_PASSWORD: $(ARTIFACTORY-Password)

fabric-chaincode-shim/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ dependencies {
6868

6969
dependencyCheck {
7070
format='ALL'
71+
analyzers {
72+
assemblyEnabled=false
73+
}
7174
}
7275

7376
sourceSets {

0 commit comments

Comments
 (0)