From 39cfe43694fbd8955678a27bff0eb3ed9477c80c Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 9 Sep 2026 16:33:16 +0200 Subject: [PATCH] try to open an SSH console --- .github/workflows/build-majestic.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-majestic.yml b/.github/workflows/build-majestic.yml index 53ca60c16..0c71de2e9 100644 --- a/.github/workflows/build-majestic.yml +++ b/.github/workflows/build-majestic.yml @@ -93,11 +93,14 @@ jobs: run: | python3 -m pip install git+https://github.com/joerick/cibuildwheel.git@main + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + - name: Install and test bindings env: CIBW_BEFORE_BUILD: cp -r lib/* /usr/lib/ && cp -r include/* /usr/include/ CIBW_TEST_REQUIRES: pytest - CIBW_TEST_COMMAND: "pytest -v {project}/src/runtime/python" + CIBW_TEST_COMMAND: "pytest {project}/src/runtime/python" CIBW_SKIP: "pp* *i686 *musllinux_x86_64" run: | python3 -m cibuildwheel src/runtime/python --output-dir wheelhouse