Skip to content

Commit

Permalink
ci: fix NUT job 1
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiand391 committed Mar 22, 2024
1 parent f79ad72 commit 6f70d6c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@ jobs:
uses: salesforcecli/github-workflows/.github/workflows/unitTestsWindows.yml@main
sfdx-core-nuts:
needs: [linux-unit-tests, determine-node-versions]
strategy:
matrix:
node_version: ${{ fromJSON(needs.determine-node-versions.outputs.nodeVersions) }}
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ fromJSON(needs.determine-node-versions.outputs.nodeVersions) }}
node-version: ${{ matrix.node_version }}
cache: yarn
- uses: google/wireit@setup-github-actions-caching/v1
continue-on-error: true
Expand Down

2 comments on commit 6f70d6c

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - ubuntu-latest

Benchmark suite Current: 6f70d6c Previous: f79ad72 Ratio
Child logger creation 473445 ops/sec (±0.52%) 492139 ops/sec (±0.53%) 1.04
Logging a string on root logger 786351 ops/sec (±8.32%) 864601 ops/sec (±8.53%) 1.10
Logging an object on root logger 546884 ops/sec (±7.48%) 606328 ops/sec (±7.76%) 1.11
Logging an object with a message on root logger 14276 ops/sec (±198.68%) 1959 ops/sec (±276.45%) 0.14
Logging an object with a redacted prop on root logger 416841 ops/sec (±8.16%) 478736 ops/sec (±7.36%) 1.15
Logging a nested 3-level object on root logger 357570 ops/sec (±7.30%) 403038 ops/sec (±7.77%) 1.13

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - windows-latest

Benchmark suite Current: 6f70d6c Previous: f79ad72 Ratio
Child logger creation 342158 ops/sec (±0.49%) 340942 ops/sec (±0.59%) 1.00
Logging a string on root logger 844881 ops/sec (±6.90%) 835756 ops/sec (±7.46%) 0.99
Logging an object on root logger 613653 ops/sec (±6.58%) 633430 ops/sec (±6.44%) 1.03
Logging an object with a message on root logger 5506 ops/sec (±212.77%) 4144 ops/sec (±215.34%) 0.75
Logging an object with a redacted prop on root logger 477224 ops/sec (±7.33%) 473010 ops/sec (±7.25%) 0.99
Logging a nested 3-level object on root logger 332961 ops/sec (±6.26%) 335851 ops/sec (±5.26%) 1.01

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.