File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ stages:
90
90
OperationType : ' Start'
91
91
AgentResolution : ' 1080p'
92
92
93
- - bash : node-ui/ci/build.sh && node-ui/ci/unit_tests.sh && node-ui/ci/ng_tests.sh && node-ui/ci/ integration_tests.sh
93
+ - bash : node-ui/ci/build.sh && node-ui/ci/unit_tests.sh && node-ui/ci/integration_tests.sh
94
94
displayName : " Build NodeUI and run tests"
95
95
96
96
- task : Windows Application Driver@0
@@ -168,7 +168,10 @@ stages:
168
168
- bash : ci/release.sh '$(Pipeline.Workspace)'
169
169
env :
170
170
PASSPHRASE : $(PASSPHRASE)
171
+ AZURE_KEY_VAULT_URL : $(AZURE_KEY_VAULT_URL)
172
+ AZURE_KEY_VAULT_CLIENT_ID : $(AZURE_KEY_VAULT_CLIENT_ID)
171
173
AZURE_KEY_VAULT_CLIENT_SECRET : $(AZURE_KEY_VAULT_CLIENT_SECRET)
174
+ AZURE_KEY_VAULT_CERTIFICATE : $(AZURE_KEY_VAULT_CERTIFICATE)
172
175
displayName : " Build and generate artifacts"
173
176
174
177
- task : CopyFiles@2
Original file line number Diff line number Diff line change @@ -4,3 +4,5 @@ CI_DIR="$( cd "$( dirname "$0" )" && pwd )"
4
4
TOOLCHAIN_HOME=" $1 "
5
5
6
6
source " $CI_DIR " /environment.sh " $TOOLCHAIN_HOME "
7
+
8
+ " $CI_DIR /format.sh"
Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ function azure_key_vault_sign() {
49
49
--file-digest sha256 \
50
50
--timestamp-rfc3161 http://timestamp.digicert.com \
51
51
--timestamp-digest sha256 \
52
- --azure-key-vault-url https://substratumnode.vault.azure.net \
53
- --azure-key-vault-client-id " 77cb9689-ce27-412f-bc16-4cc0a599676b " \
52
+ --azure-key-vault-url " $AZURE_KEY_VAULT_URL " \
53
+ --azure-key-vault-client-id " $AZURE_KEY_VAULT_CLIENT_ID " \
54
54
--azure-key-vault-client-secret " $AZURE_KEY_VAULT_CLIENT_SECRET " \
55
- --azure-key-vault-certificate " SubstratumNodeCodeSigning "
55
+ --azure-key-vault-certificate " $AZURE_KEY_VAULT_CERTIFICATE "
56
56
done
57
57
fi
58
58
}
You can’t perform that action at this time.
0 commit comments