mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
* run test suites with 2.5 binaries and images Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> * Swap to use the Helper Function to create policies (#907) The old way used the direct protobuf functions, there is a helper function in the chaincode does exactly that. Signed-off-by: Matthew B White <whitemat@uk.ibm.com> Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com> Signed-off-by: Matthew B White <whitemat@uk.ibm.com> Co-authored-by: Matthew B White <whitemat@uk.ibm.com>
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
name: Full Stack Asset Transfer Guide 🚀
|
|
run-name: ${{ github.actor }} is testing the Full Stack Asset Transfer Guide 🚀
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
- "release-2.5"
|
|
paths:
|
|
- "full-stack-asset-transfer-guide/**"
|
|
|
|
jobs:
|
|
ansible:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Full Stack Runtime
|
|
uses: ./.github/actions/fsat-setup
|
|
- run: just test-ansible
|
|
working-directory: full-stack-asset-transfer-guide
|
|
|
|
appdev:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Full Stack Runtime
|
|
uses: ./.github/actions/fsat-setup
|
|
- run: just test-appdev
|
|
working-directory: full-stack-asset-transfer-guide
|
|
|
|
chaincode:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Full Stack Runtime
|
|
uses: ./.github/actions/fsat-setup
|
|
- run: just test-chaincode
|
|
working-directory: full-stack-asset-transfer-guide
|
|
|
|
cloud:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Full Stack Runtime
|
|
uses: ./.github/actions/fsat-setup
|
|
- run: just test-cloud
|
|
working-directory: full-stack-asset-transfer-guide
|
|
|
|
console:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Full Stack Runtime
|
|
uses: ./.github/actions/fsat-setup
|
|
- run: just test-console
|
|
working-directory: full-stack-asset-transfer-guide
|
|
|
|
|