diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 1442628..b6ed097 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -4,11 +4,11 @@ on: [push, pull_request] jobs: build: - name: Build on ${{ matrix.os }} Python ${{ matrix.python-version }} + name: go-1.20.7 ${{ matrix.os }} Python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macos-11, macos-12, macos-13] + os: [macos-11, macos-12, macos-13] python-version: ["3.8", "3.9", "3.10", "3.11"] steps: @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-go@v4 with: - go-version: "1.20.0" + go-version: "1.20.7" - run: go version - uses: actions/setup-python@v4 @@ -41,41 +41,3 @@ jobs: - name: Install from source run: python setup.py install - compile: - name: Compile on ${{ matrix.os }} Python ${{ matrix.python-version }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022] - python-version: ["3.8", "3.9", "3.10", "3.11"] - - steps: - - uses: actions/checkout@v3 - - - uses: actions/setup-go@v4 - with: - go-version: "1.20.0" - - run: go version - - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - run: python --version - - - name: Upgrade pip - run: python -m pip install --upgrade pip - - - name: Install wheel - run: python -m pip install wheel - - - name: Install nuitka - run: python -m pip install nuitka - - - name: Install requirements.txt - run: python -m pip install -r requirements.txt - - - name: Compile to console binaries - run: python -m nuitka --standalone --plugin-enable=pyside6 --assume-yes-for-downloads --include-package-data=Furious Furious --output-dir=consoleBinaries - - - name: Compile to gui binaries - run: python -m nuitka --standalone --plugin-enable=pyside6 --disable-console --assume-yes-for-downloads --include-package-data=Furious Furious --output-dir=guiBinaries