Skip to content

Commit

Permalink
Fixes standalone linux job
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Nov 25, 2024
1 parent 412afda commit a871240
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/standalone-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
windows:
name: "Build Windows standalone version"
runs-on: windows-latest
runs-on: windows-2022

steps:
- name: "Checkout the repository"
Expand All @@ -38,7 +38,7 @@ jobs:

linux:
name: "Build Linux standalone version"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
Expand All @@ -50,6 +50,10 @@ jobs:
with:
python-version: "3.13"

- name: "Install setuptools"
run: |
pip install setuptools
- name: "Build YOGA Linux Standelone Version"
run: |
linux-bin/build.sh
Expand Down
1 change: 0 additions & 1 deletion linux-bin/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
nuitka==2.5.3
setuptools

0 comments on commit a871240

Please sign in to comment.