Skip to content

Commit

Permalink
changing to medium
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurret committed Mar 28, 2023
1 parent 8be91f5 commit bcb99db
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
check-generated-protobuf:
needs:
- setup
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
runs-on: ${{ fromJSON(needs.setup.outputs.compute-medium) }}
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
Expand All @@ -67,7 +67,7 @@ jobs:
check-generated-deep-copy:
needs:
- setup
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
runs-on: ${{ fromJSON(needs.setup.outputs.compute-medium) }}
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
Expand All @@ -87,7 +87,7 @@ jobs:
lint-enums:
needs:
- setup
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
runs-on: ${{ fromJSON(needs.setup.outputs.compute-medium) }}
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
Expand All @@ -101,7 +101,7 @@ jobs:
lint-container-test-deps:
needs:
- setup
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
runs-on: ${{ fromJSON(needs.setup.outputs.compute-medium) }}
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
Expand All @@ -115,7 +115,7 @@ jobs:
lint-consul-retry:
needs:
- setup
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
runs-on: ${{ fromJSON(needs.setup.outputs.compute-medium) }}
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/reusable-dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ on:
description: An expression indicating which kind of runners to use.
required: true
type: string
go-tags:
required: false
type: string
default: ""

env:
GOTAGS: ${{inputs.go-tags}} # No tags for OSS but there are for enterprise

jobs:
build:
runs-on: ${{ fromJSON(inputs.runs-on) }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/reusable-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ on:
description: An expression indicating which kind of runners to use.
required: true
type: string
go-tags:
required: false
type: string
default: ""

env:
GOTAGS: "" # No tags for OSS but there are for enterprise
GOTAGS: ${{inputs.go-tags}} # No tags for OSS but there are for enterprise
GOARCH: ${{inputs.go-arch}}

jobs:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/reusable-unit-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,16 @@ on:
required: false
type: string
default: ""

go-tags:
required: false
type: string
default: ""
env:
TEST_RESULTS: /tmp/test-results
GOTESTSUM_VERSION: 1.8.2
GOARCH: ${{inputs.go-arch}}
TOTAL_RUNNERS: ${{inputs.runner-count}}
GOTAGS: ${{inputs.go-tags}}

jobs:
set-test-package-matrix:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/reusable-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ on:
required: false
type: string
default: ""
go-tags:
required: false
type: string
default: ""

env:
TEST_RESULTS: /tmp/test-results
GOTESTSUM_VERSION: 1.8.2
GOARCH: ${{inputs.go-arch}}
GOTAGS: ${{inputs.go-tags}}

jobs:
go-test:
Expand Down

0 comments on commit bcb99db

Please sign in to comment.