Skip to content

Merge branch 'master' of github.com:openLuat/luatos-soc-pc #1

Merge branch 'master' of github.com:openLuat/luatos-soc-pc

Merge branch 'master' of github.com:openLuat/luatos-soc-pc #1

Workflow file for this run

name: osx
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: prepare software
run: |
brew install git xmake libtool
- name: clone LuatOS
run: |
cd ..
git clone https://github.com/openLuat/LuatOS.git
- name: build
run: |
xmake -w -y
- name: Tar files
run: tar -cvf luatos_osx.tar build/out
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: luatos_osx
path: luatos_osx.tar