feat(iroha-connector): add prometheus exporter to the plugin #2985
Workflow file for this run
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 IBM Corp. All Rights Reserved. | |
# | |
# SPDX-License-Identifier: CC-BY-4.0 | |
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Unit Test Weaver Node Packages | |
env: | |
NODEJS_LTS_VERSION: v18.18.2 | |
NODEJS_NEXT_LTS_VERSION: v20.9.0 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check_code_changed: | |
outputs: | |
fabric_sdk_changed: ${{ steps.changes.outputs.fabric_sdk_changed }} | |
iin_agent_changed: ${{ steps.changes.outputs.iin_agent_changed }} | |
docs_changed: ${{ steps.changes.outputs.docs_changed }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: dorny/paths-filter@v2.11.1 | |
id: changes | |
with: | |
filters: | | |
fabric_sdk_changed: | |
- '.github/workflows/test_weaver-node-pkgs.yaml' | |
- 'weaver/common/protos/**' | |
- 'weaver/common/protos-js/**' | |
- 'weaver/sdks/fabric/interoperation-node-sdk/**' | |
iin_agent_changed: | |
- '.github/workflows/test_weaver-node-pkgs.yaml' | |
- 'weaver/common/protos/**' | |
- 'weaver/common/protos-js/**' | |
- 'weaver/sdks/fabric/interoperation-node-sdk/**' | |
- 'weaver/core/identity-management/iin-agent/**' | |
docs_changed: | |
- '.github/workflows/test_weaver-node-pkgs.yaml' | |
- 'docs/**' | |
unit_test_weaver_node_sdk_local: | |
needs: check_code_changed | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [v18.18.2, v20.9.0] | |
exclude: | |
- node-version: ${{ needs.check_code_changed.outputs.fabric_sdk_changed != 'true' }} | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Protoc 3.15 | |
run: | | |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip | |
unzip protoc-3.15.6-linux-x86_64.zip -d protoc | |
- name: Build JS Protos | |
run: | | |
export PATH="$PATH:${GITHUB_WORKSPACE}/protoc/bin" | |
make build | |
working-directory: weaver/common/protos-js | |
- name: Build | |
run: make build-local | |
working-directory: weaver/sdks/fabric/interoperation-node-sdk | |
- name: Tests | |
run: npm run test | |
working-directory: weaver/sdks/fabric/interoperation-node-sdk | |
unit_test_iin_agent_local: | |
needs: check_code_changed | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [v18.18.2, v20.9.0] | |
exclude: | |
- node-version: ${{ needs.check_code_changed.outputs.iin_agent_changed != 'true' }} | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Protoc 3.15 | |
run: | | |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip | |
unzip protoc-3.15.6-linux-x86_64.zip -d protoc | |
- name: Build JS Protos | |
run: | | |
export PATH="$PATH:${GITHUB_WORKSPACE}/protoc/bin" | |
make build | |
working-directory: weaver/common/protos-js | |
- name: Build | |
run: make build-local | |
working-directory: weaver/sdks/fabric/interoperation-node-sdk | |
- name: Build IIN Agent | |
run: make build-local | |
working-directory: weaver/core/identity-management/iin-agent | |
- name: Tests | |
run: npm run test | |
working-directory: weaver/core/identity-management/iin-agent | |
build-docs: | |
runs-on: ubuntu-22.04 | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4.1.1 | |
- name: Use Python 3.x | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' # caching pip dependencies | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
working-directory: docs | |
- name: Build | |
run: mkdocs build | |
working-directory: docs |