Update app dev tutorial to include Go and Java (backport #5038) #3771
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
# Copyright the Hyperledger Fabric contributors. All rights reserved. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Verify Build | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: ["**"] | |
workflow_dispatch: | |
env: | |
GOPATH: /opt/go | |
PATH: /opt/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin | |
GO_VER: 1.23.1 | |
jobs: | |
basic-checks: | |
name: Basic Checks | |
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Fabric Code | |
- uses: actions/setup-go@v5 | |
name: Install Go | |
with: | |
go-version: ${{ env.GO_VER }} | |
- run: make basic-checks | |
name: Run Basic Checks | |
unit-tests: | |
name: Unit Tests | |
needs: basic-checks | |
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }} | |
env: | |
GOEXPERIMENT: nocoverageredesign | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Fabric Code | |
- uses: actions/setup-go@v5 | |
name: Install Go | |
with: | |
go-version: ${{ env.GO_VER }} | |
- run: ci/scripts/setup_hsm.sh | |
name: Install SoftHSM | |
- run: make unit-test | |
name: Run Unit Tests | |
integration-tests: | |
name: Integration Tests | |
needs: basic-checks | |
strategy: | |
fail-fast: false | |
matrix: | |
INTEGRATION_TEST_SUITE: ["raft","pvtdata","pvtdatapurge","ledger","lifecycle","e2e","discovery gossip devmode pluggable","gateway idemix pkcs11 configtx configtxlator","sbe nwo msp"] | |
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Fabric Code | |
- uses: actions/setup-go@v5 | |
name: Install Go | |
with: | |
go-version: ${{ env.GO_VER }} | |
- run: ci/scripts/setup_hsm.sh | |
name: Install SoftHSM | |
- run: make integration-test INTEGRATION_TEST_SUITE="${{matrix.INTEGRATION_TEST_SUITE}}" | |
name: Run Integration Tests |