Skip to content

Commit

Permalink
Dump pip freeze in CI (#132173)
Browse files Browse the repository at this point in the history
* Dump pip freeze in CI

* adjust

* adjust

* adjust

* Include python version
  • Loading branch information
epenet authored Dec 3, 2024
1 parent 7c9b855 commit 6fc4f45
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,6 @@ jobs:
uses: actions/[email protected]
with:
path: venv
lookup-only: true
key: >-
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
needs.info.outputs.python_cache_key }}
Expand Down Expand Up @@ -531,6 +530,23 @@ jobs:
python -m script.gen_requirements_all ci
uv pip install -r requirements_all_pytest.txt -r requirements_test.txt
uv pip install -e . --config-settings editable_mode=compat
- name: Dump pip freeze
run: |
python -m venv venv
. venv/bin/activate
python --version
uv pip freeze >> pip_freeze.txt
- name: Upload pip_freeze artifact
uses: actions/[email protected]
with:
name: pip-freeze-${{ matrix.python-version }}
path: pip_freeze.txt
overwrite: true
- name: Remove pip_freeze
run: rm pip_freeze.txt
- name: Check dirty
run: |
./script/check_dirty
hassfest:
name: Check hassfest
Expand Down

0 comments on commit 6fc4f45

Please sign in to comment.