mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
124 lines
4.6 KiB
YAML
124 lines
4.6 KiB
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
name: Kubernetes Test Network 🍒
|
|
run-name: ${{ github.actor }} is testing the Kubernetes Test Network 🍒
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ "main", "release-2.5" ]
|
|
pull_request:
|
|
branches: [ "main", "release-2.5" ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ccaas-java:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Test the network
|
|
id: run-test
|
|
working-directory: test-network-k8s
|
|
run: ../ci/scripts/run-k8s-test-network-basic.sh
|
|
env:
|
|
CLIENT_LANGUAGE: typescript
|
|
CHAINCODE_LANGUAGE: java
|
|
- name: Upload failure logs
|
|
if: ${{ failure() && steps.run-test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: ${{ github.job }}-logs
|
|
path: test-network-k8s/network-debug.log
|
|
|
|
ccaas-external:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Test the network
|
|
id: run-test
|
|
working-directory: test-network-k8s
|
|
run: ../ci/scripts/run-k8s-test-network-basic.sh
|
|
env:
|
|
CLIENT_LANGUAGE: typescript
|
|
CHAINCODE_LANGUAGE: external
|
|
- name: Upload failure logs
|
|
if: ${{ failure() && steps.run-test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: ${{ github.job }}-logs
|
|
path: test-network-k8s/network-debug.log
|
|
|
|
k8s-builder:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Test the network
|
|
id: run-test
|
|
working-directory: test-network-k8s
|
|
run: ../ci/scripts/run-k8s-test-network-basic.sh
|
|
env:
|
|
CHAINCODE_NAME: basic
|
|
CHAINCODE_LANGUAGE: java
|
|
CHAINCODE_BUILDER: k8s
|
|
- name: Upload failure logs
|
|
if: ${{ failure() && steps.run-test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: ${{ github.job }}-logs
|
|
path: test-network-k8s/network-debug.log
|
|
|
|
multi-namespace:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Test the network
|
|
id: run-test
|
|
working-directory: test-network-k8s
|
|
run: ../ci/scripts/run-k8s-test-network-basic.sh
|
|
env:
|
|
ORG0_NS: org0-namespace
|
|
ORG1_NS: org1-namespace
|
|
ORG2_NS: org2-namespace
|
|
CHAINCODE_NAME: basic
|
|
CHAINCODE_LANGUAGE: java
|
|
CHAINCODE_BUILDER: k8s
|
|
- name: Upload failure logs
|
|
if: ${{ failure() && steps.run-test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: ${{ github.job }}-logs
|
|
path: test-network-k8s/network-debug.log
|
|
|
|
bft-orderer:
|
|
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
|
|
# This job requires Fabric v3.0 or later, which is only supported on 'main'.
|
|
# Ensure it does not run on 'release-2.5' or earlier versions.
|
|
if: ${{ github.ref == 'refs/heads/main' || github.event.pull_request.base.ref == 'main' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Test the network
|
|
id: run-test
|
|
working-directory: test-network-k8s
|
|
run: ../ci/scripts/run-k8s-test-network-basic.sh
|
|
env:
|
|
CLIENT_LANGUAGE: typescript
|
|
CHAINCODE_LANGUAGE: java
|
|
# Note: The default Fabric version for CI is currently the latest LTS (v2.5.x).
|
|
# To test BFT Orderers, Fabric v3.x is explicitly specified here.
|
|
FABRIC_VERSION: '3.1'
|
|
ORDERER_TYPE: bft
|
|
- name: Upload failure logs
|
|
if: ${{ failure() && steps.run-test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: ${{ github.job }}-logs
|
|
path: test-network-k8s/network-debug.log
|