circleci-orb
circleci-orb copied to clipboard
Use no_output_timeout parameter on build.
Using : cypress-io/cypress@1 config.yml :
version: 2.1
orbs:
cypress: cypress-io/cypress@1
executors:
with-chrome:
docker:
- image: 'cypress/browsers:chrome69'
resource_class: medium
environment:
NODE_OPTIONS: --max_old_space_size=4096
workflows:
build:
jobs:
- cypress/install:
executor: with-chrome
build: npm run circleci:build
- cypress/run:
requires:
- cypress/install
start: npm serve:dist
wait-on: 'http://localhost:8080'
executor: with-chrome
config-file: cypress.dist.env.json
browser: chrome
record: true
post-steps:
- store_artifacts:
path: /tmp/artifacts
I would have liked to use the no_output_timeout parameter on the build run, is it possible and how? Despite my research, I haven't been able to change this setting.
I still don't have the solution so i ask you again, is there a solution to pass this parameter to the build run?
There is no solution, if you would like to pass it, please open a pull request and add this parameter to the src/orb.yml and pass to the build and test jobs. Also would need an example there too
I believe passing CircleCI params to the orb should work. Please try upgrading to v3.0.0 of the orb. Open a new issue if this is still occuring.