From acbb5ddeef973cb6e104df924c9b2399cb684b92 Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 28 Jul 2023 13:12:22 -0400 Subject: [PATCH] Revert "CI attempt cross-compile on macOS follow-up" This reverts commit fac09969604cf005c4698ce6d5e66e9f1917491e. --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0d26d4982..37219dd28 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -235,7 +235,6 @@ steps: displayName: 'Building mac full build' - bash: | - export GCCVER=gcc1220 cd sys/unix sh setup.sh hints/macos.370 cd ../.. @@ -245,7 +244,7 @@ steps: if [ $retVal -eq 0 ]; then make LUA_VERSION=5.4.6 WANT_WIN_TTY=1 WANT_WIN_CURSES=1 CROSS_TO_MSDOS=1 package fi - condition: and(eq( variables['Agent.OS'], 'Darwin' ), eq( variables.toolchain, 'cross')) + condition: eq( variables['Agent.OS'], 'Darwin' ), eq( variables.toolchain, 'cross')) workingDirectory: $(Agent.BuildDirectory)/$(netHackPath) displayName: 'Building MSDOS package on macOS'