From f858d4c8cd0f1024ece0d8f03d5db562dad55606 Mon Sep 17 00:00:00 2001 From: David Foster Date: Sun, 14 Jul 2024 08:01:12 -0400 Subject: [PATCH] SQ -> ...: Run make install before trying to run python initially --- .github/workflows/push-github-action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-github-action.yml b/.github/workflows/push-github-action.yml index c3484145..7f1e58be 100644 --- a/.github/workflows/push-github-action.yml +++ b/.github/workflows/push-github-action.yml @@ -68,8 +68,8 @@ jobs: cd cpython ./configure --with-pydebug --with-address-sanitizer --enable-framework=/Library/Frameworks/Python.framework/Versions/ASan/Python make -s -j3 - ./python.exe -c 'print("OK")' make install # install to: /Library/Frameworks/Python.framework/Versions/ASan/Python + ./python.exe -c 'print("OK")' - name: Create virtual environment if: steps.restore-cache.outputs.cache-hit != 'true'