circleci-orb icon indicating copy to clipboard operation
circleci-orb copied to clipboard

Use no_output_timeout parameter on build.

Open LeopoldBriand opened this issue 5 years ago • 2 comments

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.

LeopoldBriand avatar Mar 16 '20 10:03 LeopoldBriand

I still don't have the solution so i ask you again, is there a solution to pass this parameter to the build run?

LeopoldBriand avatar Mar 18 '20 15:03 LeopoldBriand

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

bahmutov avatar Mar 18 '20 15:03 bahmutov

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.

jennifer-shehane avatar Mar 01 '23 15:03 jennifer-shehane