From ccb76478271c8682c9147a3b64423681762c7117 Mon Sep 17 00:00:00 2001 From: Cobalt Bar <79053181+CobaltBar@users.noreply.github.com> Date: Thu, 10 Oct 2024 09:36:46 -0700 Subject: [PATCH] actions: use the same version of hxcpp for all jobs (#1850) We're currently using a version of hxcpp from GitHub instead of from Haxelib for macOS ARM64 support. Let's just use that version for all jobs, for consistency. Whenever hxcpp finally gets update on Haxelib, we'll switch to that version. --- .github/workflows/main.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5580a4f78..2b18a7680 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,8 @@ jobs: - name: Install Haxe dependencies run: | - haxelib install hxcpp 4.2.1 --quiet + curl -LO https://github.com/HaxeFoundation/hxcpp/releases/download/v4.3.45/hxcpp-4.3.45.zip + haxelib install ./hxcpp-4.3.45.zip --quiet haxelib install format --quiet haxelib install hxp --quiet @@ -201,7 +202,8 @@ jobs: - name: Install Haxe dependencies run: | - haxelib install hxcpp 4.2.1 --quiet + curl -LO https://github.com/HaxeFoundation/hxcpp/releases/download/v4.3.45/hxcpp-4.3.45.zip + haxelib install ./hxcpp-4.3.45.zip --quiet haxelib install format --quiet haxelib install hxp --quiet @@ -298,7 +300,8 @@ jobs: - name: Install Haxe dependencies run: | - haxelib install hxcpp 4.2.1 --quiet + curl -LO https://github.com/HaxeFoundation/hxcpp/releases/download/v4.3.45/hxcpp-4.3.45.zip + haxelib install ./hxcpp-4.3.45.zip --quiet haxelib install format --quiet haxelib install hxp --quiet @@ -367,7 +370,8 @@ jobs: - name: Install Haxe dependencies run: | - haxelib install hxcpp 4.2.1 --quiet + curl -LO https://github.com/HaxeFoundation/hxcpp/releases/download/v4.3.45/hxcpp-4.3.45.zip + haxelib install ./hxcpp-4.3.45.zip --quiet haxelib install format --quiet haxelib install hxp --quiet @@ -430,7 +434,8 @@ jobs: - name: Install Haxe dependencies run: | - haxelib install hxcpp 4.2.1 --quiet + curl -LO https://github.com/HaxeFoundation/hxcpp/releases/download/v4.3.45/hxcpp-4.3.45.zip + haxelib install ./hxcpp-4.3.45.zip --quiet haxelib install format --quiet haxelib install hxp --quiet haxelib install svg --quiet @@ -623,7 +628,8 @@ jobs: - name: Install Haxe dependencies run: | - haxelib install hxcpp 4.2.1 --quiet + curl -LO https://github.com/HaxeFoundation/hxcpp/releases/download/v4.3.45/hxcpp-4.3.45.zip + haxelib install ./hxcpp-4.3.45.zip --quiet haxelib install format --quiet haxelib install hxp --quiet haxelib git lime-samples https://github.com/openfl/lime-samples --quiet