We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The published Edge Usage Example is incorrect and does not work:
version: '2.1' orbs: cypress: cypress-io/cypress@3 jobs: edge-test: executor: cypress-browsers steps: - cypress/install - cypress/run-tests: cypress-command: npx cypress run --browser edge start-command: npm run start:dev workflows: use-my-orb: jobs: - edge-test
It is missing the executors section
executors
executors: cypress-browsers: docker: - image: cypress/browsers:node-20.17.0-chrome-129.0.6668.70-1-ff-130.0.1-edge-129.0.2792.52-1
The example source code in src/examples/edge.yml is:
description: > Run Cypress tests in Microsoft Edge. usage: version: 2.1 orbs: cypress: cypress-io/cypress@3 executors: cypress-browsers: docker: - image: cypress/browsers:node-20.17.0-chrome-129.0.6668.70-1-ff-130.0.1-edge-129.0.2792.52-1 jobs: edge-test: executor: cypress-browsers steps: - cypress/install - cypress/run-tests: start-command: "npm run start:dev" cypress-command: 'npx cypress run --browser edge' workflows: use-my-orb: jobs: - edge-test
The runnable part of this code is
version: 2.1 orbs: cypress: cypress-io/cypress@3 executors: cypress-browsers: docker: - image: cypress/browsers:node-20.17.0-chrome-129.0.6668.70-1-ff-130.0.1-edge-129.0.2792.52-1 jobs: edge-test: executor: cypress-browsers steps: - cypress/install - cypress/run-tests: start-command: "npm run start:dev" cypress-command: 'npx cypress run --browser edge' workflows: use-my-orb: jobs: - edge-test
However circleci orb pack ./src drops the executors section resulting in a non-working workflow.
circleci orb pack ./src
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue
The published Edge Usage Example is incorrect and does not work:
It is missing the
executors
sectionexecutors
section dropped when example is published CircleCI-Public/circleci-cli#1076 on Oct 2, 2024.Background
The example source code in src/examples/edge.yml is:
The runnable part of this code is
However
circleci orb pack ./src
drops theexecutors
section resulting in a non-working workflow.The text was updated successfully, but these errors were encountered: