chore(repo): re-enable macos e2e caching (#18382)

This commit is contained in:
Jason Jean 2023-07-31 11:05:48 -04:00 committed by GitHub
parent 8adee8ec9e
commit 8d5a16004d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 6 deletions

View File

@ -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

View File

@ -6,7 +6,6 @@
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"nativeWatcher": true,
"options": {
"accessToken": "NDg1NTA3MTAtOGFmZC00YmIwLTk2Y2MtOTkzNzc4ZTczYTlkfHJlYWQtb25seQ==",
"cacheableOperations": [

View File

@ -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}`);
});

View File

@ -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);