question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Can we get a node-16 executor?

See original GitHub issue

There should be an executor to run on node 16. The max is 14 according to https://circleci.com/developer/orbs/orb/cypress-io/cypress#executors.

I haven’t ran into an issue yet but we’ve had some local issues with our postinstall scripts on node 14 so we’re bumping to 16 and I want to run the Cypress job on 16 too.

See https://nodejs.org/en/about/releases/; node 16, 17, and 18 should probably be supported.

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:10
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

9reactions
FinnLawrencecommented, Mar 6, 2022

For anyone who needs Node 16 support in the meantime, I have set our builds up to use a customised docker executor from Cypress’s list here: https://github.com/cypress-io/cypress-docker-images/tree/master/browsers

Example config:

version: 2.1
orbs:
  cypress: cypress-io/cypress@1.29.0
executors:
  with-chrome:
    resource_class: small
    docker:
      - image: "cypress/browsers:node16.13.0-chrome95-ff94"
workflows:
  build:
    jobs:
      - cypress/install:
          executor: with-chrome
          ....
      - [your other jobs]
          executor: with-chrome
          ....
0reactions
adam-lynchcommented, Jul 21, 2022

Thanks a lot @admah!

My tests run fine. I now see the “CertVerifyProcBuiltin” error (https://github.com/cypress-io/cypress/discussions/22128). I assume this is unrelated to the executor and I’ve only starting seeing it because my Circle cache was cleared due to changing the Node version.

Read more comments on GitHub >

github_iconTop Results From Across the Web

executor-memory and - spark-notes - GitHub Pages
Distribution of Executors, Cores and Memory for a Spark Application running in Yarn: ... So, if we request 20GB per executor, AM will...
Read more >
How to use cypress orb with node version >= 14.15.0?
Can we get a node-16 executor? ... There should be an executor to run on node 16. The max is 14 according to...
Read more >
Trying to use npm in docker image built with node:16-alpine3 ...
Environment Platform: kubernetes Docker Version: Node.js Version: v16.17.0 Image Tag: not checked in at public repository (we have it in our ...
Read more >
How no. of cores and amount of memory of the executors can ...
Now we now that for each node we have 16 cores and we want 5 cores for each executor than in that case...
Read more >
How to tune spark executor number, cores ... - Stack Overflow
Case 1 Hardware - 6 Nodes, and Each node 16 cores, 64 GB RAM. Each executor is a JVM instance. So we can...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found