mirror of
https://github.com/cypress-io/cypress.git
synced 2025-12-30 19:19:53 -06:00
* electron: upgrade to 1.8.2, node 8.2.1, chromium 59 * server: update snapshots for node * server: try to debug timeouts for mochawesome * bump zunder - node-sass 3.13.1 does not work with Node 8, since we’re upgrading the project to node 8.2.1, we needed node-sass 4.5.3+. This node-sass dep was coming from gulp-sass dep in zunder which has since been updated * server: figured out that fixture scaffolding can cause timeouts * bump zunder - get fix so that asserts are not prefixed with / * server: use our own heroku example app * use cypress/browsers:chrome64 docker image on Circle with Node 8 * update root folder name * add hash to root cache * disable permissions test, because cannot run as root * server: only disable test in CI * test new binary against other projects * all: rename cypress-monorepo -> cypress * scripts: use latest docker container * server: don't skip as this messes up hooks which cause failures downstream * driver: bump timeout for zonejs * server: make tests pass for node 8.2.1 and 8.4.0
20 lines
456 B
Bash
Executable File
20 lines
456 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "This script should be run from monorepo's root"
|
|
|
|
name=cypress/internal:chrome61
|
|
echo "Pulling CI container $name"
|
|
|
|
docker pull $name
|
|
|
|
echo "Starting Docker image with monorepo volume attached"
|
|
echo "In order to build Cypress Linux binary"
|
|
echo Command npm run binary-deploy -- "$@"
|
|
|
|
docker run \
|
|
-e npm_config_loglevel='warn' \
|
|
-v $PWD:/home/person/cypress \
|
|
-w /home/person/cypress \
|
|
-it $name \
|
|
npm run binary-deploy -- "$@"
|