forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove helm install build steps (airbytehq#9024)
- Loading branch information
Showing
1 changed file
with
74 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,74 @@ | ||
name: Helm | ||
on: | ||
push: | ||
paths: | ||
- ".github/workflows/helm.yaml" | ||
- "charts/**" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/helm.yaml" | ||
- "charts/**" | ||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Kubectl | ||
uses: azure/setup-kubectl@v1 | ||
- name: Setup Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: "3.6.3" | ||
- name: Lint Chart | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh lint | ||
|
||
generate-docs: | ||
name: Generate Docs Parameters | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout bitnami-labs/readme-generator-for-helm | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: "bitnami-labs/readme-generator-for-helm" | ||
ref: "55cab5dd2191c4ffa7245cfefa428d4d9bb12730" | ||
path: readme-generator-for-helm | ||
- name: Install readme-generator-for-helm dependencies | ||
working-directory: readme-generator-for-helm | ||
run: npm install -g | ||
- name: Test can update README with generated parameters | ||
working-directory: charts/airbyte | ||
run: echo Temporarily disabled ./ci.sh check-docs-updated | ||
|
||
install: | ||
name: Install | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Kubectl | ||
uses: azure/setup-kubectl@v1 | ||
- name: Setup Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: "3.6.3" | ||
- name: Setup Kind Cluster | ||
uses: helm/kind-action@v1.2.0 | ||
with: | ||
version: "v0.11.1" | ||
image: "kindest/node:v1.21.1" | ||
- name: Install airbyte chart | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh install | ||
- if: always() | ||
name: Print diagnostics | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh diagnostics | ||
- if: success() | ||
name: Test airbyte chart | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh test | ||
#name: Helm | ||
#on: | ||
# push: | ||
# paths: | ||
# - ".github/workflows/helm.yaml" | ||
# - "charts/**" | ||
# pull_request: | ||
# paths: | ||
# - ".github/workflows/helm.yaml" | ||
# - "charts/**" | ||
#jobs: | ||
# lint: | ||
# name: Lint | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 20 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Setup Kubectl | ||
# uses: azure/setup-kubectl@v1 | ||
# - name: Setup Helm | ||
# uses: azure/setup-helm@v1 | ||
# with: | ||
# version: "3.6.3" | ||
# - name: Lint Chart | ||
# working-directory: ./charts/airbyte | ||
# run: ./ci.sh lint | ||
# | ||
# generate-docs: | ||
# name: Generate Docs Parameters | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 10 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Checkout bitnami-labs/readme-generator-for-helm | ||
# uses: actions/checkout@v2 | ||
# with: | ||
# repository: "bitnami-labs/readme-generator-for-helm" | ||
# ref: "55cab5dd2191c4ffa7245cfefa428d4d9bb12730" | ||
# path: readme-generator-for-helm | ||
# - name: Install readme-generator-for-helm dependencies | ||
# working-directory: readme-generator-for-helm | ||
# run: npm install -g | ||
# - name: Test can update README with generated parameters | ||
# working-directory: charts/airbyte | ||
# run: echo Temporarily disabled ./ci.sh check-docs-updated | ||
# | ||
# install: | ||
# name: Install | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 20 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Setup Kubectl | ||
# uses: azure/setup-kubectl@v1 | ||
# - name: Setup Helm | ||
# uses: azure/setup-helm@v1 | ||
# with: | ||
# version: "3.6.3" | ||
# - name: Setup Kind Cluster | ||
# uses: helm/kind-action@v1.2.0 | ||
# with: | ||
# version: "v0.11.1" | ||
# image: "kindest/node:v1.21.1" | ||
# - name: Install airbyte chart | ||
# working-directory: ./charts/airbyte | ||
# run: ./ci.sh install | ||
# - if: always() | ||
# name: Print diagnostics | ||
# working-directory: ./charts/airbyte | ||
# run: ./ci.sh diagnostics | ||
# - if: success() | ||
# name: Test airbyte chart | ||
# working-directory: ./charts/airbyte | ||
# run: ./ci.sh test |