2022-05-18 17:27:56 +00:00
|
|
|
name: setup-haxeshit
|
2023-02-22 19:39:41 +00:00
|
|
|
description: "sets up haxe shit, using HMM!"
|
2022-05-18 17:27:56 +00:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
2023-05-24 22:55:42 +00:00
|
|
|
- uses: krdlab/setup-haxe@v1.5.1
|
2022-05-18 17:27:56 +00:00
|
|
|
with:
|
2023-05-24 22:55:42 +00:00
|
|
|
haxe-version: 4.3.1
|
2023-02-22 19:39:41 +00:00
|
|
|
- name: Config haxelib
|
|
|
|
run: |
|
|
|
|
haxelib config
|
|
|
|
shell: bash
|
2023-06-15 18:12:39 +00:00
|
|
|
- name: Restore/create existing haxelib cache for faster downloads
|
|
|
|
uses: actions/cache@v3
|
|
|
|
id: cache-haxelib-windows
|
|
|
|
with:
|
|
|
|
# wha?
|
|
|
|
key: cache-haxelib-${{ runner.os }}-${{ hashFiles('**/hmm.json')}}
|
|
|
|
path: |
|
|
|
|
.haxelib/
|
2023-02-22 19:39:41 +00:00
|
|
|
- name: Installing Haxe lol
|
|
|
|
run: |
|
|
|
|
haxe -version
|
2023-08-03 15:40:19 +00:00
|
|
|
haxelib git haxelib https://github.com/HaxeFoundation/haxelib.git development
|
2023-02-22 19:39:41 +00:00
|
|
|
haxelib version
|
|
|
|
haxelib --global install hmm
|
2023-07-31 15:41:34 +00:00
|
|
|
haxelib --global run hmm install --quiet
|
2023-02-22 19:39:41 +00:00
|
|
|
shell: bash
|