Skip to content

Commit

Permalink
Reorder signing to see if the issue is ffmpeg or all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Nov 19, 2021
1 parent a32e015 commit d66c467
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 4 additions & 4 deletions electron-builder.json
Expand Up @@ -11,14 +11,14 @@
"entitlementsInherit": "./scripts/entitlements.mac.inherit.plist",
"type": "distribution",
"binaries": [
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/@ffmpeg-installer/darwin-x64/ffmpeg",
"./build/mac/Cypress.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Helpers/chrome_crashpad_handler",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/fsevents/fsevents.node",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/trash/lib/macos-trash",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/watchpack-chokidar2/node_modules/fsevents/build/Release/.node",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/watchpack-chokidar2/node_modules/fsevents/build/Release/fse.node",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/registry-js/build/Release/registry.node",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/term-size/vendor/macos/term-size",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/trash/lib/macos-trash",
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/fsevents/fsevents.node",
"./build/mac/Cypress.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Helpers/chrome_crashpad_handler"
"./build/mac/Cypress.app/Contents/Resources/app/node_modules/@ffmpeg-installer/darwin-x64/ffmpeg"
]
},
"linux": {
Expand Down
10 changes: 9 additions & 1 deletion scripts/binary/util/packages.ts
Expand Up @@ -58,7 +58,15 @@ export async function copyAllToDist (distDir: string) {
// copies the package to dist
// including the default paths
// and any specified in package.json files
const json = await fs.readJSON(pathToPackageJson(pkg))
let json

try {
json = await fs.readJSON(pathToPackageJson(pkg))
} catch (e) {
if (e.code === 'ENOENT') {
continue
}
}

// grab all the files that match "files" wildcards
// but without all negated files ("!src/**/*.spec.js" for example)
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Expand Up @@ -41726,4 +41726,4 @@ zone.js@~0.10.3:
zwitch@^1.0.0:
version "1.0.5"
resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920"
integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==
integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==

1 comment on commit d66c467

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on d66c467 Nov 19, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/9.0.1/appveyor-tgriesser/build/root-yarn-install-d66c467d478fa6a3cf52cdb0cd89dfac225dfd2a/cypress.tgz

Please sign in to comment.