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:
|
2023-11-21 13:29:38 -05:00
|
|
|
runs-on: [self-hosted, linux]
|
|
|
|
container: ubuntu:latest
|
2022-07-06 11:51:44 -04:00
|
|
|
name: Check latest commit
|
|
|
|
outputs:
|
|
|
|
should_run: ${{ steps.should_run.outputs.should_run }}
|
|
|
|
steps:
|
2023-11-21 13:29:38 -05:00
|
|
|
- name: ensure git cli is installed
|
|
|
|
run: apt update && apt install sudo git -y
|
2024-01-18 07:19:29 -05:00
|
|
|
- name: get token from gh app
|
|
|
|
uses: actions/create-github-app-token@v1
|
|
|
|
id: app_token
|
|
|
|
with:
|
|
|
|
app-id: ${{ vars.APP_ID }}
|
|
|
|
private-key: ${{ secrets.APP_PEM }}
|
|
|
|
owner: ${{ github.repository_owner }}
|
|
|
|
- name: checkout repo
|
|
|
|
uses: funkincrew/ci-checkout@v5
|
2023-11-21 13:54:46 -05:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2024-01-18 07:19:29 -05:00
|
|
|
token: ${{ steps.app_token.outputs.token }}
|
2023-11-21 13:54:46 -05:00
|
|
|
- name: check whether submodules exist
|
2023-11-21 13:55:45 -05:00
|
|
|
run: |
|
2023-11-21 14:17:34 -05:00
|
|
|
git config --global --add safe.directory $GITHUB_WORKSPACE
|
|
|
|
|
2023-11-21 13:54:46 -05:00
|
|
|
# debug output
|
|
|
|
echo gh=${{ github.sha }}
|
|
|
|
echo head=$(git rev-parse HEAD)
|
|
|
|
echo art=$(git -C art rev-parse HEAD)
|
|
|
|
echo assets=$(git -C assets rev-parse HEAD)
|
2023-11-21 13:55:45 -05:00
|
|
|
|
2023-11-21 13:54:46 -05:00
|
|
|
# checks if HEAD commit hash in submodules is diff from current repo, and therefore exists
|
|
|
|
test $(git rev-parse HEAD) != $(git -C art rev-parse HEAD)
|
|
|
|
test $(git rev-parse HEAD) != $(git -C assets rev-parse HEAD)
|
2022-07-06 11:51:44 -04:00
|
|
|
- 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'}}
|
2023-11-21 13:29:38 -05:00
|
|
|
runs-on: [self-hosted, linux]
|
|
|
|
container: ubuntu:latest
|
2022-07-06 11:51:44 -04:00
|
|
|
steps:
|
2023-11-21 13:29:38 -05:00
|
|
|
- name: prepare container
|
|
|
|
run: |
|
|
|
|
apt update
|
|
|
|
apt install sudo git curl unzip -y
|
|
|
|
echo $GITHUB_WORKSPACE
|
|
|
|
git config --global --add safe.directory $GITHUB_WORKSPACE
|
2024-01-18 07:19:29 -05:00
|
|
|
- name: get token from gh app
|
|
|
|
uses: actions/create-github-app-token@v1
|
|
|
|
id: app_token
|
|
|
|
with:
|
|
|
|
app-id: ${{ vars.APP_ID }}
|
|
|
|
private-key: ${{ secrets.APP_PEM }}
|
|
|
|
owner: ${{ github.repository_owner }}
|
|
|
|
- name: checkout repo
|
|
|
|
uses: funkincrew/ci-checkout@v5
|
2023-08-03 09:31:54 -04:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2024-01-18 07:19:29 -05:00
|
|
|
token: ${{ steps.app_token.outputs.token }}
|
2022-07-06 11:51:44 -04:00
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
2024-01-18 07:19:29 -05:00
|
|
|
- name: game build dependencies
|
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
|
2024-01-18 07:19:29 -05:00
|
|
|
- name: build game
|
|
|
|
run: |
|
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-10-05 10:54:13 -04:00
|
|
|
runs-on: windows-latest
|
2023-03-08 23:41:13 -05:00
|
|
|
permissions:
|
2024-01-18 07:19:29 -05:00
|
|
|
contents: write
|
|
|
|
actions: write
|
2022-05-18 13:27:56 -04:00
|
|
|
steps:
|
2024-01-18 07:19:29 -05:00
|
|
|
- name: get token from gh app
|
|
|
|
uses: actions/create-github-app-token@v1
|
|
|
|
id: app_token
|
|
|
|
with:
|
|
|
|
app-id: ${{ vars.APP_ID }}
|
|
|
|
private-key: ${{ secrets.APP_PEM }}
|
|
|
|
owner: ${{ github.repository_owner }}
|
|
|
|
- name: checkout repo
|
|
|
|
uses: funkincrew/ci-checkout@v5
|
2023-08-03 09:31:54 -04:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2024-01-18 07:19:29 -05:00
|
|
|
token: ${{ steps.app_token.outputs.token }}
|
2023-02-22 14:41:04 -05:00
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
2023-10-09 14:39:11 -04:00
|
|
|
- name: Make HXCPP cache dir
|
|
|
|
run: |
|
2023-10-17 00:38:28 -04:00
|
|
|
mkdir -p ${{ runner.temp }}\hxcpp_cache
|
2023-10-09 14:39:11 -04:00
|
|
|
- name: Restore build cache
|
|
|
|
id: cache-build-win
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
.haxelib
|
|
|
|
export
|
2023-10-17 00:38:28 -04:00
|
|
|
${{ runner.temp }}\hxcpp_cache
|
|
|
|
key: ${{ runner.os }}-build-win-${{ github.ref_name }}-${{ hashFiles('**/hmm.json') }}
|
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
|
2023-10-09 14:39:11 -04:00
|
|
|
env:
|
2023-10-09 16:03:49 -04:00
|
|
|
HXCPP_COMPILE_CACHE: "${{ runner.temp }}\\hxcpp_cache"
|
2022-05-18 13:27:56 -04:00
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
2023-10-09 14:39:11 -04:00
|
|
|
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
|
2024-01-18 07:19:29 -05:00
|
|
|
create-nightly-mac:
|
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
|
|
|
runs-on: [self-hosted, macos]
|
|
|
|
steps:
|
|
|
|
- name: prepare container
|
|
|
|
run: |
|
|
|
|
git config --global --add safe.directory $GITHUB_WORKSPACE
|
|
|
|
- name: get token from gh app
|
|
|
|
uses: actions/create-github-app-token@v1
|
|
|
|
id: app_token
|
|
|
|
with:
|
|
|
|
app-id: ${{ vars.APP_ID }}
|
|
|
|
private-key: ${{ secrets.APP_PEM }}
|
|
|
|
owner: ${{ github.repository_owner }}
|
|
|
|
- name: checkout repo
|
|
|
|
uses: funkincrew/ci-checkout@v5
|
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
token: ${{ steps.app_token.outputs.token }}
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Make HXCPP cache dir
|
|
|
|
run: |
|
|
|
|
mkdir -p ${{ runner.temp }}/hxcpp_cache
|
|
|
|
- name: Restore build cache
|
|
|
|
id: cache-build-win
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
.haxelib
|
|
|
|
export
|
|
|
|
${{ runner.temp }}/hxcpp_cache
|
|
|
|
key: ${{ runner.os }}-build-mac-${{ github.ref_name }}-${{ hashFiles('**/hmm.json') }}
|
|
|
|
- name: Build game
|
|
|
|
run: |
|
|
|
|
haxelib run lime build macos -release --times
|
|
|
|
ls
|
|
|
|
env:
|
|
|
|
HXCPP_COMPILE_CACHE: "${{ runner.temp }}/hxcpp_cache"
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/release/macos/bin
|
|
|
|
target: macos
|
2023-10-09 12:12:31 -04:00
|
|
|
# test-unit-win:
|
|
|
|
# needs: create-nightly-win
|
|
|
|
# runs-on: windows-latest
|
|
|
|
# permissions:
|
|
|
|
# contents: write
|
|
|
|
# actions: write
|
|
|
|
# steps:
|
2024-01-18 07:19:29 -05:00
|
|
|
# - uses: funkincrew/ci-checkout@v5
|
2023-10-09 12:12:31 -04:00
|
|
|
# with:
|
|
|
|
# submodules: 'recursive'
|
2023-11-27 13:07:25 -05:00
|
|
|
# fetch-depth: 0
|
2023-10-09 12:12:31 -04:00
|
|
|
# token: ${{ secrets.GH_RO_PAT }}
|
|
|
|
# - uses: ./.github/actions/setup-haxeshit
|
|
|
|
# - name: Run unit tests
|
|
|
|
# run: |
|
|
|
|
# cd ./tests/unit/
|
|
|
|
# ./start-win-native.bat
|