From 2d7a6500ceb29346163c4971ddb9d85c8ed2d76f Mon Sep 17 00:00:00 2001 From: Puyo <15311104+daniel11420@users.noreply.github.com> Date: Tue, 4 May 2021 04:42:46 +0200 Subject: [PATCH] Create appveyor-macos.yml --- appveyor-macos.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 appveyor-macos.yml diff --git a/appveyor-macos.yml b/appveyor-macos.yml new file mode 100644 index 0000000..8bc3887 --- /dev/null +++ b/appveyor-macos.yml @@ -0,0 +1,37 @@ +version: '{build}' +image: macos +environment: + global: + HAXELIB_ROOT: /home/appveyor/haxelib + +install: + - cd /home/appveyor + - brew install haxe@4.1.5 + - brew install gnutar + - mkdir $HAXELIB_ROOT && haxelib setup $HAXELIB_ROOT + - haxelib install lime 7.9.0 + - haxelib install openfl + - haxelib install flixel + - haxelib run lime setup flixel + - haxelib run lime setup + - haxelib install flixel-tools + - haxelib install flixel-addons + - haxelib install flixel-ui + - haxelib install hscript + - haxelib install newgrounds + - haxelib git faxe https://github.com/uhrobots/faxe + - haxelib git polymod https://github.com/larsiusprime/polymod.git + - haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc + - haxelib install linc_luajit + - haxelib list + - cd /home/appveyor/projects/kade-engine-macos + +build_script: + - haxelib run lime build mac + +after_build: + - gtar -cvf funkin-ke.tar -C /home/appveyor/projects/kade-engine-macos/export/release/linux/bin . + +artifacts: +- path: funkin-ke.tar + name: macOS build idk