From 73783bfc45510a49fa0c020333c24b47cabe3ea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Kwas=CC=81niewski?= Date: Wed, 31 Jul 2024 17:32:43 +0200 Subject: [PATCH] fix: try to remove xros from CI --- .circleci/configurations/jobs.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.circleci/configurations/jobs.yml b/.circleci/configurations/jobs.yml index 4491cbdf0a8b67..723359299de6e3 100644 --- a/.circleci/configurations/jobs.yml +++ b/.circleci/configurations/jobs.yml @@ -780,7 +780,7 @@ jobs: default: "iphoneos" description: The Hermes Slice that this job has to build type: enum - enum: ["macosx", "iphoneos", "iphonesimulator", "catalyst", "xros", "xrsimulator"] + enum: ["macosx", "iphoneos", "iphonesimulator", "catalyst"] executor: reactnativeios environment: - HERMES_WS_DIR: *hermes_workspace_root @@ -827,11 +827,6 @@ jobs: echo "[HERMES] Building Hermes for MacOS" BUILD_TYPE="<< parameters.flavor >>" ./utils/build-mac-framework.sh unset MACOSX_DEPLOYMENT_TARGET - elif [[ "$SLICE" == "xros" ]] || [[ "$SLICE" == "xrsimulator" ]]; then - export XROS_DEPLOYMENT_TARGET="1.0" - echo "[HERMES] Building Hermes for XR: $SLICE" - BUILD_TYPE="<< parameters.flavor >>" ./utils/build-ios-framework.sh "$SLICE" - unset XROS_DEPLOYMENT_TARGET elif [[ "$SLICE" == "iphoneos" ]] || [[ "$SLICE" == "iphonesimulator" ]] || [[ "$SLICE" == "catalyst" ]] ; then export IOS_DEPLOYMENT_TARGET="13.4" echo "[HERMES] Building Hermes for iOS: $SLICE" @@ -898,10 +893,6 @@ jobs: key: << parameters.slice_base_cache_key >>-iphonesimulator-<< parameters.flavor >> - restore_cache: key: << parameters.slice_base_cache_key >>-catalyst-<< parameters.flavor >> - - restore_cache: - key: << parameters.slice_base_cache_key >>-xros-<< parameters.flavor >> - - restore_cache: - key: << parameters.slice_base_cache_key >>-xrsimulator-<< parameters.flavor >> - run: name: "Move back build folders" command: | @@ -910,8 +901,6 @@ jobs: mv build_iphoneos_<< parameters.flavor >> build_iphoneos mv build_iphonesimulator_<< parameters.flavor >> build_iphonesimulator mv build_catalyst_<< parameters.flavor >> build_catalyst - mv build_xros_<< parameters.flavor >> build_xros - mv build_xrsimulator_<< parameters.flavor >> build_xrsimulator - run: name: "Prepare destroot folder" command: | @@ -962,18 +951,13 @@ jobs: mkdir -p "$WORKING_DIR/catalyst" mkdir -p "$WORKING_DIR/iphoneos" mkdir -p "$WORKING_DIR/iphonesimulator" - mkdir -p "$WORKING_DIR/xros" - mkdir -p "$WORKING_DIR/xrsimulator" - cd ./packages/react-native/sdks/hermes || exit 1 DSYM_FILE_PATH=API/hermes/hermes.framework.dSYM cp -r build_macosx/$DSYM_FILE_PATH "$WORKING_DIR/macosx/" cp -r build_catalyst/$DSYM_FILE_PATH "$WORKING_DIR/catalyst/" cp -r build_iphoneos/$DSYM_FILE_PATH "$WORKING_DIR/iphoneos/" cp -r build_iphonesimulator/$DSYM_FILE_PATH "$WORKING_DIR/iphonesimulator/" - cp -r build_xrsimulator/$DSYM_FILE_PATH "$WORKING_DIR/xrsimulator/" - cp -r build_xros/$DSYM_FILE_PATH "$WORKING_DIR/xros/" DEST_DIR="/tmp/hermes/dSYM/$FLAVOR" tar -C "$WORKING_DIR" -czvf "hermes.framework.dSYM" .