Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix compiling pyinstaller pre-deps #1075

Merged
merged 3 commits into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/test_prereleases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ on:
branches:
- master
- develop
- bugfix/fix_pre_tests
schedule:
- cron: '0 */12 * * *' # every 12 hours
pull_request:
paths:
- '.github/workflows/test_prereleases.yml'
- 'pyproject.toml'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down Expand Up @@ -47,7 +50,7 @@ jobs:
with:
python-version: ${{ matrix.python }}
cache: 'pip'
cache-dependency-path: 'setup.cfg'
cache-dependency-path: 'pyproject.toml'

- name: Install Windows OpenGL
if: runner.os == 'Windows'
Expand Down Expand Up @@ -111,7 +114,7 @@ jobs:
pip install pip-tools
- name: Compile and install PyInstaller requirements
run: |
pip-compile --upgrade -o requirements.txt setup.cfg --extra pyinstaller --pre
pip-compile --upgrade -o requirements.txt pyproject.toml --extra pyinstaller --pre
pip-sync
pip install .
- name: upload requirements
Expand Down
Loading