2022-05-18 17:27:56 +00:00
|
|
|
name: build-upload
|
2023-02-09 06:39:01 +00:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2022-09-20 19:50:00 +00:00
|
|
|
push:
|
2023-02-09 06:39:01 +00:00
|
|
|
|
2022-05-18 17:27:56 +00:00
|
|
|
jobs:
|
2022-07-06 15:51:44 +00:00
|
|
|
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"
|
2022-05-18 17:27:56 +00:00
|
|
|
create-nightly-html5:
|
2022-07-06 15:51:44 +00:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2022-10-06 23:27:04 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-06 15:51:44 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Build game?
|
|
|
|
run: |
|
2023-06-12 15:20:51 +00:00
|
|
|
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
|
2022-07-06 15:51:44 +00:00
|
|
|
ls
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/debug/html5/bin
|
|
|
|
target: html5
|
2022-05-18 17:27:56 +00:00
|
|
|
create-nightly-win:
|
2022-07-06 15:51:44 +00:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2023-05-23 03:58:03 +00:00
|
|
|
runs-on: windows-latest
|
2023-03-09 04:41:13 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
actions: write
|
2022-05-18 17:27:56 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-02-09 06:39:01 +00:00
|
|
|
- name: Restore existing build cache for faster compilation
|
2023-02-09 10:57:53 +00:00
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
id: cache-windows-shit
|
2023-02-09 06:39:01 +00:00
|
|
|
with:
|
|
|
|
# wha?
|
|
|
|
key: cache-build-win
|
|
|
|
path: |
|
|
|
|
.haxelib/
|
|
|
|
export/debug/windows/haxe/
|
|
|
|
export/debug/windows/obj/
|
2023-03-09 01:29:57 +00:00
|
|
|
restore-keys: |
|
|
|
|
cache-build-windows
|
2023-02-22 19:41:04 +00:00
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
2022-05-18 17:27:56 +00:00
|
|
|
- name: Build game
|
|
|
|
run: |
|
2023-02-22 20:47:55 +00:00
|
|
|
haxelib run lime build windows -debug
|
2022-05-18 17:27:56 +00:00
|
|
|
dir
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/debug/windows/bin
|
|
|
|
target: win
|
2023-03-09 01:29:57 +00:00
|
|
|
- name: Clearing already existing cache
|
|
|
|
uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const caches = await github.rest.actions.getActionsCacheList({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
})
|
|
|
|
for (const cache of caches.data.actions_caches) {
|
|
|
|
if (cache.key == "cache-build-windows") {
|
|
|
|
console.log('Clearing ' + cache.key + '...')
|
|
|
|
await github.rest.actions.deleteActionsCacheById({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
cache_id: cache.id,
|
|
|
|
})
|
|
|
|
console.log("Cache cleared.")
|
|
|
|
}
|
|
|
|
}
|
2023-02-09 06:39:01 +00:00
|
|
|
- name: Uploading new cache
|
2023-02-09 10:57:53 +00:00
|
|
|
uses: actions/cache/save@v3
|
2022-05-18 17:27:56 +00:00
|
|
|
with:
|
2023-03-09 01:29:57 +00:00
|
|
|
# caching again since for some reason it doesnt work with the first post cache shit
|
|
|
|
key: cache-build-windows
|
2023-02-09 06:39:01 +00:00
|
|
|
path: |
|
|
|
|
.haxelib/
|
2023-02-09 10:57:53 +00:00
|
|
|
export/debug/windows/haxe/
|
|
|
|
export/debug/windows/obj/
|
2023-03-09 01:29:57 +00:00
|
|
|
restore-keys: |
|
|
|
|
cache-build-windows
|