From 493827285b7292bf9446b38fff1b29e095776a8e Mon Sep 17 00:00:00 2001 From: Sarah Sunday <1644563-ssunday@users.noreply.gitlab.com> Date: Sun, 22 Jun 2025 13:35:23 -0500 Subject: [PATCH] [CI] Fix path and big env goof --- .gitlab-ci.yml | 2 +- CI/before_script.macos.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f275702d2c..52fa51d299 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -530,7 +530,7 @@ Ubuntu_GCC_integration_tests_asan: s3cmd put "${dmg}" s3://openmw-artifacts/${artifactDirectory} done fi - - CI/macos/ccache_save.sh + - ../CI/macos/ccache_save.sh artifacts: paths: - build/OpenMW-*.dmg diff --git a/CI/before_script.macos.sh b/CI/before_script.macos.sh index 1d4b02e380..50adab234d 100755 --- a/CI/before_script.macos.sh +++ b/CI/before_script.macos.sh @@ -9,7 +9,7 @@ cd build DEPENDENCIES_ROOT="/tmp/openmw-deps" -if [[ "${MACOS_X86_64}" ]]; then +if [[ "${MACOS_AMD64}" ]]; then QT_PATH=$(arch -x86_64 /usr/local/bin/brew --prefix qt@6) ICU_PATH=$(arch -x86_64 /usr/local/bin/brew --prefix icu4c) OPENAL_PATH=$(arch -x86_64 /usr/local/bin/brew --prefix openal-soft)