From a4337301be43cc9468a3b7d7c57367831e3b4106 Mon Sep 17 00:00:00 2001 From: Steven Troxler Date: Wed, 31 Aug 2022 07:33:11 -0700 Subject: [PATCH] Add a debug step to the pyre workflow The version of pyre-check-nightly that is failing to run in CI (not just for us, but also for torchx) appears to work just fine on my machine. I think I need to get in and poke around to determine what is happening. There may be other ways to debug, but if this works and I can get an interactive shell inside the instance then that will probably be a faster way to debug. --- .github/workflows/pyre.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pyre.yml b/.github/workflows/pyre.yml index ca7cb721ed1..32d42476fb6 100644 --- a/.github/workflows/pyre.yml +++ b/.github/workflows/pyre.yml @@ -24,6 +24,11 @@ jobs: VERSION=$(grep "version" .pyre_configuration | sed -n -e 's/.*\(0\.0\.[0-9]*\).*/\1/p') pip install pyre-check-nightly==$VERSION + - name: Setup upterm session + uses: lhotari/action-upterm@v1 + with: + limit-access-to-actor: true + - name: Run Pyre continue-on-error: true run: |