mirror of
https://github.com/LorenEteval/Furious.git
synced 2026-09-22 23:08:08 +03:00
Update go version to 1.20.7
This commit is contained in:
committed by
Loren Eteval
parent
3136fc162b
commit
edbd8530b1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user