From bec34a0742d849dabbcb627d13292614654a1732 Mon Sep 17 00:00:00 2001 From: Edwin Lee Date: Thu, 14 Mar 2024 09:07:10 -0500 Subject: [PATCH] Try an upterm to debug --- .github/workflows/build_and_test.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 89959d3..f7ea4cd 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -6,20 +6,20 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-20.04 - key: ubuntu2004 - - os: ubuntu-22.04 - key: ubuntu2204 +# - os: ubuntu-20.04 +# key: ubuntu2004 +# - os: ubuntu-22.04 +# key: ubuntu2204 - os: macos-11 key: mac11 - os: macos-12 key: mac12 - - os: windows-2019 - key: win64 +# - os: windows-2019 +# key: win64 # - os: windows-2019 -- GitHub Action image doesn't have 32-bit compiler by default, remove 32-bit soon, ok? # key: win32 - - os: windows-2022 - key: win64-2022server +# - os: windows-2022 +# key: win64-2022server runs-on: ${{ matrix.os }} env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} @@ -30,7 +30,9 @@ jobs: python-version: '3.12' - name: Install Dependencies run: pip3 install -r requirements.txt - #- name: Setup upterm session - # uses: lhotari/action-upterm@v1 +# - name: Setup tmate session +# uses: mxschmitt/action-tmate@v3 + - name: Setup upterm session + uses: lhotari/action-upterm@v1 - name: Run Tests run: python3 setup.py run --run-config ${{ matrix.key }}