From 8d5a16004d3f62fdf41f1f44e0ed41f11abda016 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Mon, 31 Jul 2023 11:05:48 -0400 Subject: [PATCH] chore(repo): re-enable macos e2e caching (#18382) --- .circleci/config.yml | 2 +- nx.json | 1 - scripts/copy-local-native.js | 1 - scripts/nx-release.ts | 3 --- 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f9c1fbb8260f6..197d890b7c5fc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -208,7 +208,7 @@ jobs: executor: macos environment: NX_E2E_CI_CACHE_KEY: e2e-circleci-macos - NX_DAEMON: 'true' + NX_DAEMON: 'false' # TODO: Fix the hashing issue and re-enable this NX_PERF_LOGGING: 'false' SELECTED_PM: 'npm' # explicitly define npm for macOS tests NX_SKIP_NX_CACHE: 'true' # TODO: Figure out what is going on with the cache and renable it diff --git a/nx.json b/nx.json index e14cc937548ea..b2458ff77b3f5 100644 --- a/nx.json +++ b/nx.json @@ -6,7 +6,6 @@ "tasksRunnerOptions": { "default": { "runner": "nx-cloud", - "nativeWatcher": true, "options": { "accessToken": "NDg1NTA3MTAtOGFmZC00YmIwLTk2Y2MtOTkzNzc4ZTczYTlkfHJlYWQtb25seQ==", "cacheableOperations": [ diff --git a/scripts/copy-local-native.js b/scripts/copy-local-native.js index 036d5f9b78a68..1f27c716a3141 100644 --- a/scripts/copy-local-native.js +++ b/scripts/copy-local-native.js @@ -7,6 +7,5 @@ const p = process.argv[2]; const nativeFiles = glob.sync(`packages/${p}/**/*.node`); nativeFiles.forEach((file) => { - console.log('COPY', file, '=>', `build/${file}`); fs.copyFileSync(file, `build/${file}`); }); diff --git a/scripts/nx-release.ts b/scripts/nx-release.ts index 6e9db2e27d78a..6f8ddc4e08959 100755 --- a/scripts/nx-release.ts +++ b/scripts/nx-release.ts @@ -51,9 +51,6 @@ function hideFromGitIndex(uncommittedFiles: string[]) { execSync(buildCommand, { stdio: [0, 1, 2], }); - execSync(`ls -lah build/packages/nx/src/native`, { - stdio: [0, 1, 2], - }); if (options.local) { updateLernaJsonVersion(currentLatestVersion);