From e8cf04ac3fa3ccc85da2a582baa4c1b209cda9c9 Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Wed, 23 Oct 2024 15:26:19 +0200 Subject: [PATCH] debug --- .github/workflows/concrete_python_tests_linux.yml | 4 ++++ frontends/concrete-python/Makefile | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/concrete_python_tests_linux.yml b/.github/workflows/concrete_python_tests_linux.yml index fda314234f..7c9242be02 100644 --- a/.github/workflows/concrete_python_tests_linux.yml +++ b/.github/workflows/concrete_python_tests_linux.yml @@ -76,6 +76,8 @@ jobs: echo "Debug: ccache statistics (after the build):" ccache -s + + ls -R build/tools/concretelang/python_packages/concretelang_core/ - name: Upload concrete-compiler python-bindings uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 with: @@ -113,6 +115,8 @@ jobs: source .venv/bin/activate export KEY_CACHE_DIRECTORY=./key-set-cache mkdir $KEY_CACHE_DIRECTORY + echo "DEBUG env" + make debug make pytest # - name: Slack notification # if: ${{ failure() }} && github.ref == 'refs/heads/main' diff --git a/frontends/concrete-python/Makefile b/frontends/concrete-python/Makefile index 7b7ace237f..7322a5cf9f 100644 --- a/frontends/concrete-python/Makefile +++ b/frontends/concrete-python/Makefile @@ -63,6 +63,12 @@ tfhers-utils: pytest: pytest-default +debug: + echo "Printing environment" + env + echo "ls -R ${BINDINGS_DIRECTORY}" + ls -R ${BINDINGS_DIRECTORY} + pytest-default: tfhers-utils eval $(shell make silent_cp_activate) pytest tests -svv -n auto \