From bebfb0cec8948bea257214e996ec90000dc19029 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Mon, 24 Aug 2026 23:53:32 -0400 Subject: [PATCH] ci: revert change to compilation check (#4394) Not required anymore. Eventually this test should be ran on the ARM version of the compiler in addition to the x86 one, but im not in a rush, especially since it's likely that the ARM backend will be less stable as it's literally brand new. --- .github/workflows/compiler-output-check.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compiler-output-check.yaml b/.github/workflows/compiler-output-check.yaml index 3a7aec60a1..891915dca7 100644 --- a/.github/workflows/compiler-output-check.yaml +++ b/.github/workflows/compiler-output-check.yaml @@ -66,10 +66,9 @@ jobs: - name: Compile and preserve (master) run: | - # master predates the .break compiler form, so use its old expansion for the comparison - ./build.master/goalc/goalc --game jak1 --cmd '(begin (defmacro .break () (quote (/ 0 0))) (make-group "all-code"))' - ./build.master/goalc/goalc --game jak2 --cmd '(begin (defmacro .break () (quote (/ 0 0))) (make-group "all-code"))' - ./build.master/goalc/goalc --game jak3 --cmd '(begin (defmacro .break () (quote (/ 0 0))) (make-group "all-code"))' + ./build.master/goalc/goalc --game jak1 --cmd '(make-group "all-code")' + ./build.master/goalc/goalc --game jak2 --cmd '(make-group "all-code")' + ./build.master/goalc/goalc --game jak3 --cmd '(make-group "all-code")' mv ./out/jak1/obj ./out/jak1/obj.master mv ./out/jak2/obj ./out/jak2/obj.master mv ./out/jak3/obj ./out/jak3/obj.master