Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit b664e77

Browse files
committed
whatever this is
1 parent c9ae283 commit b664e77

2 files changed

Lines changed: 10 additions & 18 deletions

File tree

.github/workflows/android.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
with:
1818
haxe-version: 4.3.7
1919
- name: Restore existing build cache for faster compilation
20-
uses: actions/cache@v4
20+
uses: actions/cache@v4.2.3
2121
with:
2222
# not caching the bin folder to prevent asset duplication and stuff like that
2323
key: cache-build-android
2424
path: |
2525
.haxelib/
2626
export/release/android/haxe/
2727
export/release/android/obj/
28-
restore-keys: |
29-
cache-build-android
28+
- run: |
29+
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
3030
- name: Installing/Updating libraries
3131
run: |
3232
haxe -cp commandline -D analyzer-optimize --run Main setup -s
@@ -63,13 +63,11 @@ jobs:
6363
}
6464
}
6565
- name: Uploading new cache
66-
uses: actions/cache@v4
66+
uses: actions/cache@v4.2.3
6767
with:
6868
# caching again since for some reason it doesnt work with the first post cache shit
6969
key: cache-build-android
7070
path: |
7171
.haxelib/
7272
export/release/android/haxe/
73-
export/release/android/obj/
74-
restore-keys: |
75-
cache-build-android
73+
export/release/android/obj/

.github/workflows/ios.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,16 @@ jobs:
1616
uses: krdlab/setup-haxe@v2
1717
with:
1818
haxe-version: 4.3.7
19-
- name: Setup Xcode
20-
uses: maxim-lobanov/setup-xcode@master
21-
with:
22-
xcode-version: '16.4'
2319
- name: Restore existing build cache for faster compilation
24-
uses: actions/cache@v4
20+
uses: actions/cache@v4.2.3
2521
with:
2622
# not caching the bin folder to prevent asset duplication and stuff like that
2723
key: cache-build-ios
2824
path: |
2925
.haxelib/
3026
export/release/ios/CodenameEngine/haxe/
31-
restore-keys: |
32-
cache-build-ios
27+
- run: |
28+
echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV
3329
- name: Installing/Updating libraries
3430
run: |
3531
haxe -cp commandline -D analyzer-optimize --run Main setup -s
@@ -69,12 +65,10 @@ jobs:
6965
name: Codename Engine iOS
7066
path: export/release/ios/build/Release-iphoneos/*.ipa
7167
- name: Uploading new cache
72-
uses: actions/cache@v4
68+
uses: actions/cache@v4.2.3
7369
with:
7470
# caching again since for some reason it doesnt work with the first post cache shit
7571
key: cache-build-ios
7672
path: |
7773
.haxelib/
78-
export/release/ios/CodenameEngine/haxe/
79-
restore-keys: |
80-
cache-build-ios
74+
export/release/ios/CodenameEngine/haxe/

0 commit comments

Comments
 (0)