Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
workflow_dispatch:

env:
HAXE_VERSION: 4.3.7
HXCPP_COMPILE_CACHE: ${{ github.workspace }}/.hxcpp_cache

jobs:
build:
name: Linux Build
Expand All @@ -17,7 +21,7 @@ jobs:
- name: Setting up Haxe
uses: krdlab/setup-haxe@v2
with:
haxe-version: 4.3.7
haxe-version: ${{ env.HAXE_VERSION }}
- name: Restore existing build cache for faster compilation
uses: actions/cache@v4.2.3
with:
Expand All @@ -27,8 +31,6 @@ jobs:
.haxelib/
export/release/linux/haxe/
export/release/linux/obj/
- run: |
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
- name: Installing LibVLC
run: |
sudo apt-get install libvlc-dev libvlccore-dev
Expand Down Expand Up @@ -91,7 +93,7 @@ jobs:
- name: Setting up Haxe
uses: krdlab/setup-haxe@v2
with:
haxe-version: 4.3.7
haxe-version: ${{ env.HAXE_VERSION }}
- name: Restore existing build cache for faster compilation
uses: actions/cache@v4.2.3
with:
Expand All @@ -101,8 +103,6 @@ jobs:
.haxelib/
export/debug/linux/haxe/
export/debug/linux/obj/
- run: |
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
- name: Installing LibVLC
run: |
sudo apt-get install libvlc-dev libvlccore-dev
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
workflow_dispatch:

env:
HAXE_VERSION: 4.3.7
HXCPP_COMPILE_CACHE: ${{ github.workspace }}/.hxcpp_cache

jobs:
build:
name: Mac OS Build
Expand All @@ -17,7 +21,7 @@ jobs:
- name: Setting up Haxe
uses: krdlab/setup-haxe@v2
with:
haxe-version: 4.3.7
haxe-version: ${{ env.HAXE_VERSION }}
- name: Restore existing build cache for faster compilation
uses: actions/cache@v4.2.3
with:
Expand All @@ -27,8 +31,6 @@ jobs:
.haxelib/
export/release/macos/haxe/
export/release/macos/obj/
- run: |
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
- name: Installing/Updating libraries
run: |
haxe -cp commandline -D analyzer-optimize --run Main setup -s
Expand Down Expand Up @@ -88,7 +90,7 @@ jobs:
- name: Setting up Haxe
uses: krdlab/setup-haxe@v2
with:
haxe-version: 4.3.7
haxe-version: ${{ env.HAXE_VERSION }}
- name: Restore existing build cache for faster compilation
uses: actions/cache@v4.2.3
with:
Expand All @@ -98,8 +100,6 @@ jobs:
.haxelib/
export/debug/macos/haxe/
export/debug/macos/obj/
- run: |
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
- name: Installing/Updating libraries
run: |
haxe -cp commandline -D analyzer-optimize --run Main setup -s
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
workflow_dispatch:

env:
HAXE_VERSION: 4.3.7
HXCPP_COMPILE_CACHE: ${{ github.workspace }}/.hxcpp_cache

jobs:
build:
name: Windows Build
Expand All @@ -17,7 +21,7 @@ jobs:
- name: Setting up Haxe
uses: krdlab/setup-haxe@v2
with:
haxe-version: 4.3.7
haxe-version: ${{ env.HAXE_VERSION }}
- name: Restore existing build cache for faster compilation
uses: actions/cache@v4.2.3
with:
Expand All @@ -27,8 +31,6 @@ jobs:
.haxelib/
export/release/windows/haxe/
export/release/windows/obj/
- run: |
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
- name: Installing/Updating libraries
run: |
haxe -cp commandline -D analyzer-optimize --run Main setup -s --no-vscheck
Expand Down Expand Up @@ -86,7 +88,7 @@ jobs:
- name: Setting up Haxe
uses: krdlab/setup-haxe@v2
with:
haxe-version: 4.3.7
haxe-version: ${{ env.HAXE_VERSION }}
- name: Restore existing build cache for faster compilation
uses: actions/cache@v4.2.3
with:
Expand All @@ -96,8 +98,6 @@ jobs:
.haxelib/
export/debug/windows/haxe/
export/debug/windows/obj/
- run: |
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
- name: Installing/Updating libraries
run: |
haxe -cp commandline -D analyzer-optimize --run Main setup -s --no-vscheck
Expand Down