Skip to content

Commit 373d034

Browse files
authored
chore: Use large runners only for AWS, GCP, Azure CI workflows (#15070)
<!-- 🎉 Thank you for making CloudQuery awesome by submitting a PR 🎉 --> #### Summary Same as #15069 not from a fork so workflows that require secrets can pass <!-- Use the following steps to ensure your PR is ready to be reviewed - [ ] Read the [contribution guidelines](../blob/main/CONTRIBUTING.md) 🧑‍🎓 - [ ] Run `make lint` to ensure the proposed changes follow the coding style 🚨 (install golangci-lint [here](https://golangci-lint.run/usage/install/#local-installation)) - [ ] Run `make test` to ensure the proposed changes pass the tests 🧪 - [ ] If changing a source plugin run `make gen` to ensure docs are up to date 📝 - [ ] Ensure the status checks below are successful ✅ --->
1 parent 9c2db8c commit 373d034

56 files changed

Lines changed: 113 additions & 113 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/dest_azblob.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-azblob:
2121
timeout-minutes: 30
2222
name: "plugins/destination/azblob"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/azblob
@@ -52,7 +52,7 @@ jobs:
5252
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
5353
validate-release:
5454
timeout-minutes: 30
55-
runs-on: large-ubuntu-monorepo
55+
runs-on: ubuntu-latest
5656
env:
5757
CGO_ENABLED: 0
5858
steps:

.github/workflows/dest_bigquery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-bigquery:
2121
timeout-minutes: 10
2222
name: "plugins/destination/bigquery"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/bigquery
@@ -63,7 +63,7 @@ jobs:
6363
BIGQUERY_DATASET_LOCATION: us-west1
6464
validate-release:
6565
timeout-minutes: 30
66-
runs-on: large-ubuntu-monorepo
66+
runs-on: ubuntu-latest
6767
steps:
6868
- name: Checkout
6969
if: startsWith(github.head_ref, 'release-please--branches--main--components') || github.event_name == 'push'

.github/workflows/dest_clickhouse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
plugins-destination-clickhouse:
2121
name: "plugins/destination/clickhouse"
22-
runs-on: large-ubuntu-monorepo
22+
runs-on: ubuntu-latest
2323
timeout-minutes: 30
2424
env:
2525
DB_USER: cq
@@ -78,7 +78,7 @@ jobs:
7878
run: make test
7979
validate-release:
8080
timeout-minutes: 30
81-
runs-on: large-ubuntu-monorepo
81+
runs-on: ubuntu-latest
8282
env:
8383
CGO_ENABLED: 0
8484
steps:

.github/workflows/dest_duckdb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-duckdb:
2121
timeout-minutes: 30
2222
name: "plugins/destination/duckdb"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/duckdb
@@ -48,7 +48,7 @@ jobs:
4848
run: make test
4949
validate-release:
5050
timeout-minutes: 30
51-
runs-on: large-ubuntu-monorepo
51+
runs-on: ubuntu-latest
5252
container:
5353
image: ghcr.io/cloudquery/golang-cross:v10.0.0
5454
env:

.github/workflows/dest_elasticsearch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-elasticsearch:
2121
timeout-minutes: 10
2222
name: "plugins/destination/elasticsearch"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/elasticsearch
@@ -62,7 +62,7 @@ jobs:
6262
run: make test
6363
validate-release:
6464
timeout-minutes: 30
65-
runs-on: large-ubuntu-monorepo
65+
runs-on: ubuntu-latest
6666
steps:
6767
- name: Checkout
6868
if: startsWith(github.head_ref, 'release-please--branches--main--components') || github.event_name == 'push'

.github/workflows/dest_file.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
plugins-destination-file:
2323
timeout-minutes: 30
2424
name: "plugins/destination/file"
25-
runs-on: large-ubuntu-monorepo
25+
runs-on: ubuntu-latest
2626
defaults:
2727
run:
2828
working-directory: ./plugins/destination/file
@@ -50,7 +50,7 @@ jobs:
5050
run: make test
5151
validate-release:
5252
timeout-minutes: 30
53-
runs-on: large-ubuntu-monorepo
53+
runs-on: ubuntu-latest
5454
env:
5555
CGO_ENABLED: 0
5656
steps:

.github/workflows/dest_firehose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-firehose:
2121
timeout-minutes: 30
2222
name: "plugins/destination/firehose"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/firehose
@@ -57,7 +57,7 @@ jobs:
5757
# run: make test
5858
validate-release:
5959
timeout-minutes: 30
60-
runs-on: large-ubuntu-monorepo
60+
runs-on: ubuntu-latest
6161
env:
6262
CGO_ENABLED: 0
6363
steps:

.github/workflows/dest_gcs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-gcs:
2121
timeout-minutes: 30
2222
name: "plugins/destination/gcs"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/gcs
@@ -56,7 +56,7 @@ jobs:
5656
run: make test
5757
validate-release:
5858
timeout-minutes: 30
59-
runs-on: large-ubuntu-monorepo
59+
runs-on: ubuntu-latest
6060
env:
6161
CGO_ENABLED: 0
6262
steps:

.github/workflows/dest_gremlin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-gremlin:
2121
timeout-minutes: 30
2222
name: "plugins/destination/gremlin"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/gremlin
@@ -53,7 +53,7 @@ jobs:
5353
run: make test
5454
validate-release:
5555
timeout-minutes: 30
56-
runs-on: large-ubuntu-monorepo
56+
runs-on: ubuntu-latest
5757
env:
5858
CGO_ENABLED: 0
5959
steps:

.github/workflows/dest_kafka.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
plugins-destination-kafka:
2121
timeout-minutes: 30
2222
name: "plugins/destination/kafka"
23-
runs-on: large-ubuntu-monorepo
23+
runs-on: ubuntu-latest
2424
defaults:
2525
run:
2626
working-directory: ./plugins/destination/kafka
@@ -73,7 +73,7 @@ jobs:
7373
run: make test
7474
validate-release:
7575
timeout-minutes: 30
76-
runs-on: large-ubuntu-monorepo
76+
runs-on: ubuntu-latest
7777
env:
7878
CGO_ENABLED: 0
7979
steps:

0 commit comments

Comments
 (0)