github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/orbs/chrome.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: test
     5      spec:
     6        platform:
     7          arch: amd64
     8          os: linux
     9        runtime:
    10          spec: {}
    11          type: cloud
    12        steps:
    13        - name: install_chrome
    14          spec:
    15            envs:
    16              ORB_PARAM_CHANNEL: stable
    17              ORB_PARAM_CHROME_VERSION: latest
    18              ORB_PARAM_REPLACE_EXISTING: "0"
    19            run: curl https://raw.githubusercontent.com/CircleCI-Public/browser-tools-orb/vx.y/src/scripts/install-chrome.sh
    20              | bash
    21          type: script
    22        - name: firefox_setup
    23          spec:
    24            envs:
    25              HOME: /root
    26              ORB_PARAM_FIREFOX_INSTALL_DIR: /usr/local/bin
    27              ORB_PARAM_FIREFOX_VERSION: latest
    28            run: curl https://raw.githubusercontent.com/CircleCI-Public/browser-tools-orb/vx.y/src/scripts/install-firefox.sh
    29              | bash
    30          type: script
    31        - name: Check install
    32          spec:
    33            run: |
    34              set -eo pipefail
    35              google-chrome --version
    36              chromedriver --version
    37              firefox --version
    38            shell: bash
    39          type: script
    40      type: ci
    41  version: 1