CircleCI-Public / go-orb

https://circleci.com/orbs/registry/orb/circleci/go
MIT License
9 stars 35 forks source link

Set issue with executor 1.19 #69

Open adamdavis40208 opened 1 year ago

adamdavis40208 commented 1 year ago

Circle file:

version: 2.1

orbs:
  go: circleci/go@1

jobs:
  test:
    executor:
      name: go/default
      tag: '1.19'
    steps:
      - checkout
      - go/load-cache
      - go/mod-download
      - go/save-cache
      - go/test:
          covermode: atomic
          failfast: true
          race: true
workflows:
  version: 2
  janus-pipeline:
    jobs:
      - test:
          context: cambia

Circle job failing with:

/bin/bash: line 9: set: -c: invalid option
set: usage: set [-abefhkmnptuvxBCHP] [-o option-name] [--] [arg ...]
adamdavis40208 commented 1 year ago

Setting fast-fail to false didn't fix the problem, pinning to 1.7.1 got my jobs green again.

davidjb commented 1 year ago

I'm seeing the same issue, but for all versions of Go (e.g. 1.17, 1.18, 1.19) and just having go/test as a step, even without any parameters.

bmorton commented 1 year ago

I've got the same issue while trying to update from 1.7.1 to 1.7.2 today.