1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-05 06:14:36 +00:00
Funkin/.github/workflows/build-shit.yml

80 lines
2.6 KiB
YAML
Raw Normal View History

name: build-upload
2023-02-09 06:39:01 +00:00
on:
workflow_dispatch:
2022-09-20 19:50:00 +00:00
push:
2023-06-15 18:09:19 +00:00
jobs:
check_date:
runs-on: ubuntu-latest
name: Check latest commit
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- uses: actions/checkout@v2
- name: print latest_commit
run: echo ${{ github.sha }}
- id: should_run
continue-on-error: true
name: check latest commit is less than a day
if: ${{ github.event_name == 'schedule' }}
run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false"
create-nightly-html5:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false'}}
2022-10-06 23:27:04 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-haxeshit
2023-07-15 02:53:11 +00:00
- name: Build Lime
# TODO: Remove the step that builds Lime later.
2023-07-15 03:07:17 +00:00
# Bash method
2023-07-15 02:53:11 +00:00
run: |
2023-07-15 03:07:17 +00:00
LIME_PATH=`haxelib libpath lime`
2023-07-15 02:53:11 +00:00
echo "Moving to $LIME_PATH"
cd $LIME_PATH
git submodule sync --recursive
git submodule update --recursive
git status
2023-07-15 08:22:02 +00:00
sudo apt-get install -y libxinerama-dev
haxelib run lime rebuild linux --clean
2023-07-15 02:53:11 +00:00
- name: Build game
run: |
sudo apt-get install -y libx11-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libgl-dev libxi-dev libxext-dev libasound2-dev
2022-09-20 20:41:28 +00:00
haxelib run lime build html5 -debug --times
ls
- uses: ./.github/actions/upload-itch
with:
butler-key: ${{ secrets.BUTLER_API_KEY}}
build-dir: export/debug/html5/bin
target: html5
create-nightly-win:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false'}}
2023-05-23 03:58:03 +00:00
runs-on: windows-latest
permissions:
contents: write
actions: write
steps:
- uses: actions/checkout@v3
2023-02-22 19:41:04 +00:00
- uses: ./.github/actions/setup-haxeshit
2023-07-11 00:10:17 +00:00
- name: Build Lime
# TODO: Remove the step that builds Lime later.
2023-07-11 00:49:28 +00:00
# Powershell method
2023-07-11 00:10:17 +00:00
run: |
2023-07-14 23:51:45 +00:00
$LIME_PATH = haxelib libpath lime
2023-07-11 00:10:17 +00:00
echo "Moving to $LIME_PATH"
cd $LIME_PATH
git submodule sync --recursive
git submodule update --recursive
git status
2023-07-15 02:25:51 +00:00
haxelib run lime rebuild windows --clean
- name: Build game
run: |
2023-02-22 20:47:55 +00:00
haxelib run lime build windows -debug
dir
- uses: ./.github/actions/upload-itch
with:
butler-key: ${{ secrets.BUTLER_API_KEY}}
build-dir: export/debug/windows/bin
target: win