mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-05-23 23:52:51 +00:00
Remember to build Lime on HTML5 too.
This commit is contained in:
parent
f675a5c578
commit
5a70a50a56
13
.github/workflows/build-shit.yml
vendored
13
.github/workflows/build-shit.yml
vendored
|
@ -25,7 +25,18 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: ./.github/actions/setup-haxeshit
|
- uses: ./.github/actions/setup-haxeshit
|
||||||
- name: Build game?
|
- name: Build Lime
|
||||||
|
# TODO: Remove the step that builds Lime later.
|
||||||
|
# Powershell method
|
||||||
|
run: |
|
||||||
|
$LIME_PATH = haxelib libpath lime
|
||||||
|
echo "Moving to $LIME_PATH"
|
||||||
|
cd $LIME_PATH
|
||||||
|
git submodule sync --recursive
|
||||||
|
git submodule update --recursive
|
||||||
|
git status
|
||||||
|
haxelib run lime rebuild windows --clean
|
||||||
|
- name: Build game
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y libx11-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libgl-dev libxi-dev libxext-dev libasound2-dev
|
sudo apt-get install -y libx11-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libgl-dev libxi-dev libxext-dev libasound2-dev
|
||||||
haxelib run lime build html5 -debug --times
|
haxelib run lime build html5 -debug --times
|
||||||
|
|
Loading…
Reference in a new issue