Skip to content

Commit

Permalink
WIP: Debug Regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
corey committed Feb 18, 2024
1 parent 3df6dd0 commit f0c671c
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/regression_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,20 @@ jobs:
working-directory: test_apps/python_app
run: poetry --version

- name: Cache Poetry Version
- name: Install importlib_metadata (Python 3.12)
run: pip install importlib_metadata

- name: Cache Poetry Version (Linux)
if: matrix.os == 'ubuntu-latest'
working-directory: test_apps/python_app
run:
run: |
POETRY_VER=$(python -c "import importlib_metadata; print(importlib_metadata.version('poetry'))")
echo $POETRY_VER
echo "poetry_version=$POETRY_VER" >> $GITHUB_ENV
- name: Cache Poetry Version (Windows)
if: matrix.os == 'windows-latest'
working-directory: test_apps/python_app
run: |
$POETRY_VER = python -c "import importlib_metadata; print(importlib_metadata.version('poetry'))"
echo $POETRY_VER
echo "poetry_version=$POETRY_VER" >> $GITHUB_ENV
Expand Down Expand Up @@ -313,7 +324,7 @@ jobs:
run: where.exe origen

- name: Reinstall Poetry Version
run:
run: |
echo ${{ env.poetry_version }}
poetry --version
pip install poetry==${{ env.poetry_version }}
Expand Down

0 comments on commit f0c671c

Please sign in to comment.