From 37f3d5a0be65aa17d01c341653b44eb57e35d23f Mon Sep 17 00:00:00 2001 From: Puyo <15311104+daniel11420@users.noreply.github.com> Date: Tue, 4 May 2021 08:04:02 +0200 Subject: [PATCH] Update appveyor-macos.yml --- appveyor-macos.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/appveyor-macos.yml b/appveyor-macos.yml index f054c49..4a6ed95 100644 --- a/appveyor-macos.yml +++ b/appveyor-macos.yml @@ -3,11 +3,16 @@ image: macos environment: global: HAXELIB_ROOT: /Users/appveyor/haxelib + HAXE_INSTALLDIR: /Users/appveyor/haxe_bin install: - cd /Users/appveyor - - brew install haxe@4.1.5 + - brew install neko - brew install gnutar + - wget "https://github.com/HaxeFoundation/haxe/releases/download/4.1.5/haxe-4.1.5-osx.tar.gz" + - mkdir $HAXE_INSTALLDIR + - tar -xf haxe-4.1.5-osx.tar.gz -C $HAXE_INSTALLDIR + - export PATH=$PATH:$HAXE_INSTALLDIR/haxe_20201231082044_5e33a78aa - mkdir $HAXELIB_ROOT && haxelib setup $HAXELIB_ROOT - haxelib install lime 7.9.0 - haxelib install openfl @@ -30,7 +35,7 @@ build_script: - haxelib run lime build mac after_build: - - gtar -cvf funkin-ke.tar -C /Users/appveyor/projects/kade-engine-macos/export/release/linux/bin . + - gtar -cvf funkin-ke.tar -C /Users/appveyor/projects/kade-engine-macos/export/release/mac/bin . artifacts: - path: funkin-ke.tar