Skip to content

Delete test_data/invalid_json/IMPORT03.json #152

Delete test_data/invalid_json/IMPORT03.json

Delete test_data/invalid_json/IMPORT03.json #152

Workflow file for this run

name: Build Standalone GUI
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
actions: write
jobs:
build-windows:
name: Build on Windows
runs-on: windows-latest
defaults:
run:
working-directory: Tool
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Cleanup before PyInstaller
shell: pwsh
run: |
Remove-Item -Recurse -Force build,dist -ErrorAction SilentlyContinue
Remove-Item -Force *.spec -ErrorAction SilentlyContinue
try { pip cache purge } catch { Write-Host "pip cache purge failed (ignored)" }
- name: Build exe
run: |
pyinstaller --noconfirm --clean --windowed --onefile `
--name "SoccerNetProAnalyzer" `
--add-data "style;style" `
--add-data "ui;ui" `
--add-data "ui2;ui2" `
"main.py"
# 为了避免你再次 hit artifact quota:只在网页端手动 Run workflow 时上传
- name: Upload artifact (manual runs only)
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v4
with:
name: SoccerNetProAnalyzer-Windows
path: Tool/dist/SoccerNetProAnalyzer.exe
retention-days: 3
build-macos:
name: Build on macOS
runs-on: macos-latest
defaults:
run:
working-directory: Tool
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Cleanup before PyInstaller
run: |
rm -rf build dist *.spec
pip cache purge || true
- name: Build binary
run: |
pyinstaller --noconfirm --clean --windowed --onefile \
--name "SoccerNetProAnalyzer" \
--add-data "style:style" \
--add-data "ui:ui" \
--add-data "ui2:ui2" \
"main.py"
- name: Upload artifact (manual runs only)
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v4
with:
name: SoccerNetProAnalyzer-macOS
path: Tool/dist/SoccerNetProAnalyzer
retention-days: 3
build-linux:
name: Build on Linux
runs-on: ubuntu-latest
defaults:
run:
working-directory: Tool
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install system deps (Qt/OpenCV runtime)
run: |
sudo apt-get update
sudo apt-get install -y libgl1 libglib2.0-0
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Cleanup before PyInstaller
run: |
rm -rf build dist *.spec
pip cache purge || true
- name: Build binary
run: |
pyinstaller --noconfirm --clean --windowed --onefile \
--name "SoccerNetProAnalyzer" \
--add-data "style:style" \
--add-data "ui:ui" \
--add-data "ui2:ui2" \
"main.py"
- name: Upload artifact (manual runs only)
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v4
with:
name: SoccerNetProAnalyzer-Linux
path: Tool/dist/SoccerNetProAnalyzer
retention-days: 3