mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 10:05:41 -05:00
d6bc8d88aa
* fetch-depth=1 * switch to app tokens * docs? * docs! * actions / doesnt check out * mac attempt 1 * custom setup haxe action * trigger ci run thanks github * interesting * meow * use tags * homebrew fixing maybe * mymindishazel/actions-setup-haxe@vC.1.8 * automationgit pushgit pushgit push * rosetta all the way? * macos oopsy * mac cache && move ci to org * update checkout action to do post-checkout cleaning * update haxe & cache actions to node 20 * retry action but with updated ci-checkout@v6 * cleanup: there's no scheduled runs * actions/cache@v4 in setup-haxe * update to haxe 4.3 * lack of libc? * ubuntu 23.10 has glibc 2.38 --------- Co-authored-by: Eric <ericmyllyoja@gmail.com> Co-authored-by: Cameron Taylor <cameron.taylor.ninja@gmail.com>
30 lines
828 B
YAML
30 lines
828 B
YAML
name: setup-haxeshit
|
|
description: "sets up haxe shit, using HMM!"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: funkincrew/ci-haxe@v3
|
|
with:
|
|
haxe-version: 4.3.3
|
|
- name: Config haxelib
|
|
run: |
|
|
haxelib config
|
|
shell: bash
|
|
- name: Installing Haxe lol
|
|
run: |
|
|
haxe -version
|
|
haxelib git haxelib https://github.com/HaxeFoundation/haxelib.git master
|
|
haxelib version
|
|
haxelib --global install hmm
|
|
shell: bash
|
|
- name: dependency install cache
|
|
id: cache-hmm
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: .haxelib
|
|
key: ${{ runner.os }}-hmm-${{ hashFiles('**/hmm.json') }}
|
|
- if: ${{ steps.cache-hmm.outputs.cache-hit != 'true' }}
|
|
name: hmm install
|
|
run: |
|
|
haxelib --global run hmm install
|
|
shell: bash
|