@@ -1345,48 +1345,6 @@ jobs:
13451345 run : |
13461346 echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1
13471347
1348- overhead_metrics :
1349- name : Overhead metrics
1350- needs : [job_get_metadata, job_build]
1351- runs-on : ubuntu-20.04
1352- timeout-minutes : 30
1353- if : |
1354- contains(github.event.pull_request.labels.*.name, 'ci-overhead-measurements')
1355- steps :
1356- - name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
1357- uses : actions/checkout@v4
1358- with :
1359- ref : ${{ env.HEAD_COMMIT }}
1360- - name : Set up Node
1361- uses : actions/setup-node@v4
1362- with :
1363- node-version-file : ' package.json'
1364- - name : Restore caches
1365- uses : ./.github/actions/restore-cache
1366- with :
1367- dependency_cache_key : ${{ needs.job_build.outputs.dependency_cache_key }}
1368-
1369- - name : Collect
1370- run : yarn ci:collect
1371- working-directory : dev-packages/overhead-metrics
1372-
1373- - name : Process
1374- id : process
1375- run : yarn ci:process
1376- working-directory : dev-packages/overhead-metrics
1377- # Don't run on forks - the PR comment cannot be added.
1378- if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
1379- env :
1380- GITHUB_TOKEN : ${{ github.token }}
1381-
1382- - name : Upload results
1383- uses : actions/upload-artifact@v4
1384- if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
1385- with :
1386- name : ${{ steps.process.outputs.artifactName }}
1387- path : ${{ steps.process.outputs.artifactPath }}
1388- retention-days : 7
1389-
13901348 job_compile_bindings_profiling_node :
13911349 name : Compile & Test Profiling Bindings (v${{ matrix.node }}) ${{ matrix.target_platform || matrix.os }}, ${{ matrix.node || matrix.container }}, ${{ matrix.arch || matrix.container }}, ${{ contains(matrix.container, 'alpine') && 'musl' || 'glibc' }}
13921350 needs : [job_get_metadata, job_build]
0 commit comments