mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Also update some GitHub Actions versions. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
name: Test Network HSM 🍏
|
|
run-name: ${{ github.actor }} is running the Test Network HSM tests 🍏
|
|
|
|
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:
|
|
hsm:
|
|
runs-on: fabric-ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
chaincode-language:
|
|
- go
|
|
- javascript
|
|
- typescript
|
|
- java
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up the test network runtime
|
|
uses: ./.github/actions/test-network-setup
|
|
|
|
- name: Install SoftHSM
|
|
run: sudo apt install -y softhsm2
|
|
|
|
- name: Set up SoftHSM
|
|
run: |
|
|
echo directories.tokendir = /tmp > $HOME/softhsm2.conf
|
|
export SOFTHSM2_CONF=$HOME/softhsm2.conf
|
|
softhsm2-util --init-token --slot 0 --label "ForFabric" --pin 98765432 --so-pin 1234
|
|
|
|
- name: Run Test Network HSM
|
|
working-directory: test-network
|
|
env:
|
|
CHAINCODE_LANGUAGE: ${{ matrix.chaincode-language }}
|
|
run: ../ci/scripts/run-test-network-hsm.sh
|