diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c17b81246e79..0fe73025cf86 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1228,11 +1228,12 @@ jobs: if: # Only run profiling e2e tests if profiling node bindings have changed always() && needs.job_e2e_prepare.result == 'success' && - (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && - ( - (needs.job_get_metadata.outputs.changed_profiling_node == 'true') || - (needs.job_get_metadata.outputs.is_release == 'true') - ) + (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) + # && + # ( + # (needs.job_get_metadata.outputs.changed_profiling_node == 'true') || + # (needs.job_get_metadata.outputs.is_release == 'true') + # ) needs: [job_get_metadata, job_build, job_e2e_prepare] runs-on: ubuntu-20.04 timeout-minutes: 15