diff --git a/.github/workflows/compiler_build_and_test_cpu_distributed.yml b/.github/workflows/compiler_build_and_test_cpu_distributed.yml index 4bd0463001..8276437df3 100644 --- a/.github/workflows/compiler_build_and_test_cpu_distributed.yml +++ b/.github/workflows/compiler_build_and_test_cpu_distributed.yml @@ -69,15 +69,10 @@ jobs: cd compilers/concrete-compiler/compiler rm -rf /shared/build make HPX_DIR=/shared/hpx install-hpx-from-source - make HPX_DIR=/shared/hpx BUILD_DIR=/shared/build DATAFLOW_EXECUTION_ENABLED=ON BINDINGS_PYTHON_ENABLED=OFF CUDA_SUPPORT=${{ env.CUDA_SUPPORT }} build-end-to-end-dataflow-tests + make HPX_DIR=/shared/hpx BUILD_DIR=/shared/build CCACHE=ON DATAFLOW_EXECUTION_ENABLED=ON BINDINGS_PYTHON_ENABLED=OFF CUDA_SUPPORT=${{ env.CUDA_SUPPORT }} build-end-to-end-dataflow-tests - name: Run end-to-end benchmarks run: | set -e cd compilers/concrete-compiler/compiler make BUILD_DIR=/shared/build run-end-to-end-distributed-tests - - - name: Analyze logs - run: | - cd /shared/build/gtest-parallel-logs/passed - ls -1 | xargs grep -H "WARNING RETRY" | sed -e "s/.log.*//g" | uniq -c | sed -re "s/ *([0-9]*) (.*)/::warning ::Test \2 retried \1 times/g" | cat