forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
231a5e5
commit d41d052
Showing
3 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -342,6 +342,8 @@ jobs: | |
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: packages/cactus-api-client/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-api-client | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_PATTERN: ./packages/cactus-api-client/src/test/typescript/integration/default-consortium-provider.test.ts | ||
TAPE_TEST_RUNNER_DISABLED: false | ||
needs: build-dev | ||
|
@@ -363,6 +365,13 @@ jobs: | |
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-1 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-cmd-api-server: | ||
continue-on-error: false | ||
needs: | ||
|
@@ -433,6 +442,8 @@ jobs: | |
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: packages/cactus-cmd-socketio-server/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-cmd-socketio-server | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_RUNNER_DISABLED: true | ||
needs: build-dev | ||
runs-on: ubuntu-22.04 | ||
|
@@ -454,13 +465,21 @@ jobs: | |
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-2 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-common: | ||
continue-on-error: false | ||
env: | ||
DEV_BUILD_DISABLED: false | ||
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: packages/cactus-common/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-common | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_PATTERN: '--files={./packages/cactus-common/src/test/typescript/unit/key-converter.test.ts,./packages/cactus-common/src/test/typescript/unit/logging/logger.test.ts}' | ||
TAPE_TEST_RUNNER_DISABLED: false | ||
needs: build-dev | ||
|
@@ -482,12 +501,21 @@ jobs: | |
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-3 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-core: | ||
continue-on-error: false | ||
env: | ||
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: packages/cactus-core/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-core | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_RUNNER_DISABLED: true | ||
needs: build-dev | ||
runs-on: ubuntu-22.04 | ||
|
@@ -507,12 +535,21 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-4 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-core-api: | ||
continue-on-error: false | ||
env: | ||
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: packages/cactus-core-api/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-core-api | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_RUNNER_DISABLED: true | ||
needs: build-dev | ||
runs-on: ubuntu-22.04 | ||
|
@@ -532,12 +569,21 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-5 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-example-carbon-accounting-backend: | ||
continue-on-error: false | ||
env: | ||
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: examples/cactus-example-carbon-accounting-backend/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-example-carbon-accounting-backend | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_PATTERN: ./examples/cactus-example-carbon-accounting-backend/src/test/typescript/integration/admin-enroll-v1-endpoint.test.ts | ||
TAPE_TEST_RUNNER_DISABLED: false | ||
needs: build-dev | ||
|
@@ -558,12 +604,21 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-6 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-example-carbon-accounting-business-logic-plugin: | ||
continue-on-error: false | ||
env: | ||
FULL_BUILD_DISABLED: true | ||
JEST_TEST_PATTERN: examples/cactus-example-carbon-accounting-business-logic-plugin/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts | ||
JEST_TEST_RUNNER_DISABLED: false | ||
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-example-carbon-accounting-business-logic-plugin | ||
JEST_TEST_CODE_COVERAGE_DISABLED: false | ||
TAPE_TEST_RUNNER_DISABLED: true | ||
needs: build-dev | ||
runs-on: ubuntu-22.04 | ||
|
@@ -583,6 +638,13 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
- name: Upload coverage reports as artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: coverage-reports-7 | ||
path: ./code-coverage-ts/**/coverage-final.json | ||
|
||
cactus-example-carbon-accounting-frontend: | ||
continue-on-error: false | ||
env: | ||
|
@@ -1813,6 +1875,7 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- run: ./tools/ci.sh | ||
|
||
cactus-test-cmd-api-server: | ||
continue-on-error: false | ||
needs: | ||
|
@@ -2346,6 +2409,53 @@ jobs: | |
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH' | ||
generate_coverage_report: | ||
runs-on: ubuntu-22.04 | ||
needs: build-dev | ||
steps: | ||
- name: Use Node.js ${{ env.NODEJS_VERSION }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ env.NODEJS_VERSION }} | ||
|
||
- uses: actions/[email protected] | ||
|
||
- id: yarn-cache | ||
name: Restore Yarn Cache | ||
uses: actions/[email protected] | ||
with: | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
path: ./.yarn/ | ||
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | ||
- name: Install istanbul-merge | ||
run: yarn add istanbul-merge --dev | ||
|
||
- name: Run Configure | ||
run: npm run configure | ||
|
||
- name: Download coverage reports | ||
uses: actions/[email protected] | ||
with: | ||
path: ./code-coverage-ts/ | ||
|
||
- name: Display structure of downloaded files | ||
run: ls -R | ||
|
||
- name: Merge coverage reports | ||
run: npx istanbul-merge --out coverage.json ./code-coverage-ts/*/coverage-final.json | ||
|
||
- name: Generate HTML report | ||
run: npx istanbul report --include coverage.json --dir cacti html | ||
|
||
- name: Output text report | ||
run: npx istanbul report --include coverage.json --dir cacti text | ||
|
||
- name: Output text-summary report | ||
run: npx istanbul report --include coverage.json --dir cacti text-summary | ||
|
||
|
||
name: Cactus_CI | ||
'on': | ||
pull_request: | ||
|
@@ -2356,4 +2466,4 @@ name: Cactus_CI | |
push: | ||
branches: | ||
- main | ||
- dev | ||
- dev |
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
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