Skip to content

Commit

Permalink
Merge pull request #2 from htylab/main
Browse files Browse the repository at this point in the history
gui
  • Loading branch information
htylab authored Jun 15, 2024
2 parents 5f0d280 + f3b683a commit ebecd63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gui-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@ jobs:
py: ['tigercinegui']

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v3
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install pyinstaller onnxruntime skimage
pip install pyinstaller onnxruntime scikit-image
- name: Run Pyinstaller 1
if: matrix.os == 'windows-latest'
run: |
pyinstaller -c -p ./tigerhx --add-data "./tigerhx/exe/onnxruntime_providers_shared.dll;onnxruntime/capi" -F ./tigerhx/${{ matrix.py }}.py
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.py }}-${{ matrix.os }}
path: dist/*
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'ubuntu-18.04', 'macos-latest']
os: ['windows-latest', 'ubuntu-20.04', 'macos-latest']
#os: ['windows-latest']
py: ['hx']

Expand Down

0 comments on commit ebecd63

Please sign in to comment.