Skip to content

Commit

Permalink
Merge pull request #60 from damienfern/master
Browse files Browse the repository at this point in the history
ci(standelone-builds): build a standalone version for Linux x86_64
  • Loading branch information
flozz authored Apr 15, 2024
2 parents 0d94c99 + f7bf1d8 commit b1d0577
Showing 1 changed file with 26 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Windows Standalone Build"
name: "Standalone Builds"

on:
push:
Expand All @@ -9,14 +9,11 @@ on:
- master

jobs:

build:

windows:
name: "Build Windows standalone version"
runs-on: windows-latest

steps:

- name: "Checkout the repository"
uses: actions/checkout@v4
with:
Expand All @@ -36,3 +33,27 @@ jobs:
with:
name: yoga-vX.X.X_win_standalone_x86-64
path: yogawin.dist

linux:
name: "Build Linux standalone version"
runs-on: ubuntu-20.04
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
with:
submodules: true

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: "Build YOGA Linux Standelone Version"
run: |
linux-bin/build.sh
- name: Archive Windows Build
uses: actions/upload-artifact@v4
with:
name: yoga-vX.X.X_linux_standalone_x86-64
path: yoga-bin.dist

0 comments on commit b1d0577

Please sign in to comment.