mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Fix asset-transfer-events sample Java chaincode (#782)
- chaincode-java Gradle project name did not match the instructions or the chaincode name used by the sample application code. - Added test of Java chaincode to CI pipeline. Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
This commit is contained in:
parent
f8e7bfe803
commit
12f59398ba
2 changed files with 4 additions and 1 deletions
|
|
@ -2,4 +2,4 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
rootProject.name = 'asset-transfer-events-java'
|
||||
rootProject.name = 'events'
|
||||
|
|
|
|||
|
|
@ -228,6 +228,9 @@ jobs:
|
|||
Events-Javascript:
|
||||
CHAINCODE_NAME: events
|
||||
CHAINCODE_LANGUAGE: javascript
|
||||
Events-Java:
|
||||
CHAINCODE_NAME: events
|
||||
CHAINCODE_LANGUAGE: java
|
||||
steps:
|
||||
- template: templates/install-deps.yml
|
||||
- script: ../ci/scripts/run-test-network-events.sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue