mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-10 00:59:47 -06:00
* Trying out electron 19.0.4 * nvm-for-windows 1.1.7 is busted for node-16.14.2 * Went a bit overboard with the exit I think * Stepping this back * Breaking out yarn install * Print runtime data * log more data points * well i'm confused. seeing what happens after these steps * Lets see if powershell picks up the new PATH * Maybe shell is refreshed between jobs? * Installing nvm-1.1.9 manually * Cleaning up circle.yml and a few other node references. * Yeah that ain't gonna work * Trying bash implementation * Urgh yaml * Bumping to latest patch version * Getting a full build + artifacts * Sourcing node in build step * More node sourcing * Run against updated recipes repo * I'll find all these eventually * Trigger new build after cache busting * Let's slim this down to test recipes for a bit * Good ol' working_directory * Fixing bad syntax * Not quite sure where all this is necessary at this point * Using recipes PR branch * This isn't necessary here * Re-enabling jobs * More node sourcing * Running kitchensink tests against PR branch * Moving nvm-windows update to script * Even more node sourcing * Removing CI config for merged kitchensink/recipes PRs
19 lines
452 B
Bash
Executable File
19 lines
452 B
Bash
Executable File
#!/bin/bash
|
|
set e+x
|
|
|
|
echo "This script should be run from cypress's root"
|
|
|
|
name=cypress/browsers:node16.14.2-slim-chrome100-ff99-edge
|
|
echo "Pulling CI container $name"
|
|
|
|
docker pull $name
|
|
|
|
echo "Starting Docker image with cypress volume attached"
|
|
echo "You should be able to edit files locally"
|
|
echo "but execute the code in the container"
|
|
|
|
docker run -v $PWD:/home/person/cypress \
|
|
-w /home/person/cypress${WORKING_DIR:-} \
|
|
-it $name \
|
|
/bin/bash
|