Skip to content
New issue

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

chore: rename circleci executor #11247

Merged
merged 1 commit into from
Jun 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
aws-cli: circleci/aws-cli@1.4.0

executors:
go-1_17:
telegraf-ci:
working_directory: '/go/src/github.com/influxdata/telegraf'
resource_class: large
docker:
Expand Down Expand Up @@ -171,7 +171,7 @@ commands:
- 'dist'
jobs:
test-go-linux:
executor: go-1_17
executor: telegraf-ci
steps:
- checkout
- restore_cache:
Expand All @@ -192,7 +192,7 @@ jobs:
paths:
- '*'
test-go-linux-386:
executor: go-1_17
executor: telegraf-ci
steps:
- checkout
- restore_cache:
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: windows
Expand All @@ -232,7 +232,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: darwin-amd64
Expand All @@ -242,7 +242,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: darwin-arm64
Expand All @@ -252,7 +252,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: i386
Expand All @@ -262,7 +262,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: ppc64le
Expand All @@ -272,7 +272,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: riscv64
Expand All @@ -282,7 +282,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: s390x
Expand All @@ -292,7 +292,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: armel
Expand All @@ -302,7 +302,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: amd64
Expand All @@ -312,7 +312,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: arm64
Expand All @@ -322,7 +322,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: mipsel
Expand All @@ -332,7 +332,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: mips
Expand All @@ -342,7 +342,7 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: static
Expand All @@ -352,13 +352,13 @@ jobs:
nightly:
type: boolean
default: false
executor: go-1_17
executor: telegraf-ci
steps:
- package-build:
type: armhf
nightly: << parameters.nightly >>
nightly:
executor: go-1_17
executor: telegraf-ci
steps:
- attach_workspace:
at: '/build'
Expand Down Expand Up @@ -460,7 +460,7 @@ jobs:
printf -v payload '{ "pullRequestNumber": "%s" }' "$PR"
curl -X POST "https://182c7jdgog.execute-api.us-east-1.amazonaws.com/prod/shareArtifacts" --data "$payload"
generate-config:
executor: go-1_17
executor: telegraf-ci
steps:
- generate-config
generate-config-win:
Expand Down