Merge branch 'rewrite/master' into feature/units

This commit is contained in:
Eric 2024-02-02 22:06:49 -05:00 committed by GitHub
commit fecb4a5ad5
3 changed files with 67 additions and 97 deletions

View file

@ -3,9 +3,9 @@ description: "sets up haxe shit, using HMM!"
runs: runs:
using: "composite" using: "composite"
steps: steps:
- uses: funkincrew/ci-haxe@v2 - uses: funkincrew/ci-haxe@v3
with: with:
haxe-version: 4.3.1 haxe-version: 4.3.3
- name: Config haxelib - name: Config haxelib
run: | run: |
haxelib config haxelib config
@ -19,7 +19,7 @@ runs:
shell: bash shell: bash
- name: dependency install cache - name: dependency install cache
id: cache-hmm id: cache-hmm
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: .haxelib path: .haxelib
key: ${{ runner.os }}-hmm-${{ hashFiles('**/hmm.json') }} key: ${{ runner.os }}-hmm-${{ hashFiles('**/hmm.json') }}

View file

@ -4,56 +4,14 @@ on:
push: push:
jobs: jobs:
check_date:
runs-on: [self-hosted, linux]
container: ubuntu:latest
name: Check latest commit
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- name: ensure git cli is installed
run: apt update && apt install sudo git -y
- 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 }}
- name: check whether submodules exist
run: |
git config --global --add safe.directory $GITHUB_WORKSPACE
# 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)
# 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)
- 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: create-nightly-html5:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false'}}
runs-on: [self-hosted, linux] runs-on: [self-hosted, linux]
container: ubuntu:latest container: ubuntu:23.10
steps: steps:
- name: prepare container - name: prepare container
run: | run: |
apt update apt update
apt install sudo git curl unzip -y apt install sudo git curl unzip -y
echo $GITHUB_WORKSPACE
git config --global --add safe.directory $GITHUB_WORKSPACE git config --global --add safe.directory $GITHUB_WORKSPACE
- name: get token from gh app - name: get token from gh app
uses: actions/create-github-app-token@v1 uses: actions/create-github-app-token@v1
@ -63,12 +21,12 @@ jobs:
private-key: ${{ secrets.APP_PEM }} private-key: ${{ secrets.APP_PEM }}
owner: ${{ github.repository_owner }} owner: ${{ github.repository_owner }}
- name: checkout repo - name: checkout repo
uses: funkincrew/ci-checkout@v5 uses: funkincrew/ci-checkout@v6
with: with:
submodules: 'recursive' submodules: 'recursive'
token: ${{ steps.app_token.outputs.token }} token: ${{ steps.app_token.outputs.token }}
- uses: ./.github/actions/setup-haxeshit - uses: ./.github/actions/setup-haxeshit
- name: game build dependencies - name: gather game dependencies
run: | run: |
sudo apt-get install -y libx11-dev xorg-dev libgl-dev libxi-dev libxext-dev libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev sudo apt-get install -y libx11-dev xorg-dev libgl-dev libxi-dev libxext-dev libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev
- name: build game - name: build game
@ -81,12 +39,7 @@ jobs:
build-dir: export/release/html5/bin build-dir: export/release/html5/bin
target: html5 target: html5
create-nightly-win: create-nightly-win:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false'}}
runs-on: windows-latest runs-on: windows-latest
permissions:
contents: write
actions: write
steps: steps:
- name: get token from gh app - name: get token from gh app
uses: actions/create-github-app-token@v1 uses: actions/create-github-app-token@v1
@ -96,7 +49,7 @@ jobs:
private-key: ${{ secrets.APP_PEM }} private-key: ${{ secrets.APP_PEM }}
owner: ${{ github.repository_owner }} owner: ${{ github.repository_owner }}
- name: checkout repo - name: checkout repo
uses: funkincrew/ci-checkout@v5 uses: funkincrew/ci-checkout@v6
with: with:
submodules: 'recursive' submodules: 'recursive'
token: ${{ steps.app_token.outputs.token }} token: ${{ steps.app_token.outputs.token }}
@ -106,14 +59,14 @@ jobs:
mkdir -p ${{ runner.temp }}\hxcpp_cache mkdir -p ${{ runner.temp }}\hxcpp_cache
- name: Restore build cache - name: Restore build cache
id: cache-build-win id: cache-build-win
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: | path: |
.haxelib .haxelib
export export
${{ runner.temp }}\hxcpp_cache ${{ runner.temp }}\hxcpp_cache
key: ${{ runner.os }}-build-win-${{ github.ref_name }}-${{ hashFiles('**/hmm.json') }} key: ${{ runner.os }}-build-win-${{ github.ref_name }}-${{ hashFiles('**/hmm.json') }}
- name: Build game - name: build game
run: | run: |
haxelib run lime build windows -release -DNO_REDIRECT_ASSETS_FOLDER haxelib run lime build windows -release -DNO_REDIRECT_ASSETS_FOLDER
dir dir
@ -125,8 +78,6 @@ jobs:
build-dir: export/release/windows/bin build-dir: export/release/windows/bin
target: win target: win
create-nightly-mac: create-nightly-mac:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false'}}
runs-on: [self-hosted, macos] runs-on: [self-hosted, macos]
steps: steps:
- name: prepare container - name: prepare container
@ -140,7 +91,7 @@ jobs:
private-key: ${{ secrets.APP_PEM }} private-key: ${{ secrets.APP_PEM }}
owner: ${{ github.repository_owner }} owner: ${{ github.repository_owner }}
- name: checkout repo - name: checkout repo
uses: funkincrew/ci-checkout@v5 uses: funkincrew/ci-checkout@v6
with: with:
submodules: 'recursive' submodules: 'recursive'
token: ${{ steps.app_token.outputs.token }} token: ${{ steps.app_token.outputs.token }}
@ -148,9 +99,9 @@ jobs:
- name: Make HXCPP cache dir - name: Make HXCPP cache dir
run: | run: |
mkdir -p ${{ runner.temp }}/hxcpp_cache mkdir -p ${{ runner.temp }}/hxcpp_cache
- name: Restore build cache - name: restore build cache
id: cache-build-win id: cache-build-win
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: | path: |
.haxelib .haxelib
@ -168,20 +119,39 @@ jobs:
butler-key: ${{ secrets.BUTLER_API_KEY}} butler-key: ${{ secrets.BUTLER_API_KEY}}
build-dir: export/release/macos/bin build-dir: export/release/macos/bin
target: macos target: macos
# test-unit-win: # test-unit-win:
# needs: create-nightly-win # needs: create-nightly-win
# runs-on: windows-latest # runs-on: windows-latest
# permissions:
# contents: write
# actions: write
# steps: # steps:
# - uses: funkincrew/ci-checkout@v5 # - 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@v6
# with: # with:
# submodules: 'recursive' # submodules: 'recursive'
# fetch-depth: 0 # token: ${{ steps.app_token.outputs.token }}
# token: ${{ secrets.GH_RO_PAT }} # - name: Make HXCPP cache dir
# run: |
# mkdir -p ${{ runner.temp }}\hxcpp_cache
# - name: Restore build cache
# id: cache-build-win
# uses: actions/cache@v4
# with:
# path: |
# .haxelib
# export
# ${{ runner.temp }}\hxcpp_cache
# key: ${{ runner.os }}-test-win-${{ github.ref_name }}-${{ hashFiles('**/hmm.json') }}
# - uses: ./.github/actions/setup-haxeshit # - uses: ./.github/actions/setup-haxeshit
# - name: Run unit tests # - name: Run unit tests
# run: | # run: |
# cd ./tests/unit/ # cd ./tests/unit/
# ./start-win-native.bat # ./start-win-native.bat
# env:
# HXCPP_COMPILE_CACHE: "${{ runner.temp }}\\hxcpp_cache"