From 56b4f7ef6a7edcd3dc0efde087c6c9410b0cd897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=83=D1=82=D1=8E=D0=BD=D1=8F=D0=BD=20=D0=90?= =?UTF-8?q?=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=A0=D0=BE=D0=BC=D0=B0=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=B8=D1=87?= Date: Sun, 17 Dec 2023 20:41:14 +0300 Subject: [PATCH] debug python tests on newest curl --- .github/workflows/Build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index a8b4c4eebc..96125898b7 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -18,11 +18,11 @@ jobs: strategy: matrix: include: - - os: buster # old curl - compiler: g++ - cpp: 17 - asan: off - ubsan: off + # - os: buster # old curl + # compiler: g++ + # cpp: 17 + # asan: off + # ubsan: off - os: focal # new curl compiler: clang++ cpp: 17 @@ -80,9 +80,9 @@ jobs: run: docker exec kphp-build-container-${{matrix.os}} bash -c "cmake -DCMAKE_CXX_COMPILER=${{matrix.compiler}} -DCMAKE_CXX_STANDARD=${{matrix.cpp}} -DADDRESS_SANITIZER=${{matrix.asan}} -DUNDEFINED_SANITIZER=${{matrix.ubsan}} -DPDO_DRIVER_MYSQL=ON -DPDO_DRIVER_PGSQL=ON -DPDO_LIBS_STATIC_LINKING=ON -S ${{env.kphp_root_dir}} -B ${{env.kphp_build_dir}} && make -C ${{env.kphp_build_dir}} -j$(nproc) all" - # - name: Run unit tests - # run: docker exec kphp-build-container-${{matrix.os}} bash -c - # "make -C ${{env.kphp_build_dir}} -j$(nproc) test" + - name: Run unit tests + run: docker exec kphp-build-container-${{matrix.os}} bash -c + "make -C ${{env.kphp_build_dir}} -j$(nproc) test" - name: Compile PHP script run: docker exec kphp-build-container-${{matrix.os}} bash -c @@ -109,9 +109,9 @@ jobs: with: path: ${{runner.temp}}/_tmp/ - # - name: Fail pipeline if python tests failed - # if: steps.python_tests.outcome == 'failure' - # run: exit 1 + - name: Fail pipeline if python tests failed + if: steps.python_tests.outcome == 'failure' + run: exit 1 - name: Remove docker container run: docker rm -f kphp-build-container-${{matrix.os}}