2022-05-18 13:27:56 -04:00
|
|
|
name: build-upload
|
2023-02-09 01:39:01 -05:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2022-09-20 15:50:00 -04:00
|
|
|
push:
|
2023-06-15 14:09:19 -04:00
|
|
|
|
2022-05-18 13:27:56 -04:00
|
|
|
jobs:
|
2022-07-06 11:51:44 -04:00
|
|
|
check_date:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check latest commit
|
|
|
|
outputs:
|
|
|
|
should_run: ${{ steps.should_run.outputs.should_run }}
|
|
|
|
steps:
|
2023-08-03 09:31:54 -04:00
|
|
|
- uses: actions/checkout@v3
|
2022-07-06 11:51:44 -04:00
|
|
|
- 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"
|
2022-05-18 13:27:56 -04:00
|
|
|
create-nightly-html5:
|
2022-07-06 11:51:44 -04:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2022-10-06 19:27:04 -04:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-06 11:51:44 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-08-03 09:31:54 -04:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2022-07-06 11:51:44 -04:00
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
2023-07-14 22:53:11 -04:00
|
|
|
- name: Build game
|
2022-07-06 11:51:44 -04:00
|
|
|
run: |
|
2023-08-03 11:47:40 -04:00
|
|
|
sudo apt-get install -y libx11-dev xorg-dev libgl-dev libxi-dev libxext-dev libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev
|
2023-08-30 18:32:51 -04:00
|
|
|
haxelib run lime build html5 -release --times
|
2022-07-06 11:51:44 -04:00
|
|
|
ls
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
2023-08-30 18:32:51 -04:00
|
|
|
build-dir: export/release/html5/bin
|
2022-07-06 11:51:44 -04:00
|
|
|
target: html5
|
2022-05-18 13:27:56 -04:00
|
|
|
create-nightly-win:
|
2022-07-06 11:51:44 -04:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2023-05-22 23:58:03 -04:00
|
|
|
runs-on: windows-latest
|
2023-03-08 23:41:13 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
actions: write
|
2022-05-18 13:27:56 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-08-03 09:31:54 -04:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2023-02-22 14:41:04 -05:00
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
2022-05-18 13:27:56 -04:00
|
|
|
- name: Build game
|
|
|
|
run: |
|
2023-08-30 18:32:51 -04:00
|
|
|
haxelib run lime build windows -release -DNO_REDIRECT_ASSETS_FOLDER
|
2022-05-18 13:27:56 -04:00
|
|
|
dir
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
2023-08-30 18:32:51 -04:00
|
|
|
build-dir: export/release/windows/bin
|
2022-05-18 13:27:56 -04:00
|
|
|
target: win
|
2023-08-30 18:31:59 -04:00
|
|
|
test-unit-win:
|
|
|
|
needs: create-nightly-win
|
|
|
|
runs-on: windows-latest
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
actions: write
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Run unit tests
|
|
|
|
run: |
|
|
|
|
cd ./tests/unit/
|
|
|
|
./start-win-native.bat
|