Skip to content

Use dedicated KinD composite action from CodeFlare common #423

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

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
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
74 changes: 0 additions & 74 deletions .github/actions/kind/action.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/resources-kind/kind.yaml

This file was deleted.

9 changes: 8 additions & 1 deletion .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
with:
submodules: recursive

- name: Checkout common repo code
uses: actions/checkout@v3
with:
repository: 'project-codeflare/codeflare-common'
ref: 'main'
path: 'common'

- name: Set Go
uses: actions/setup-go@v3
with:
Expand All @@ -46,7 +53,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup and start KinD cluster
uses: ./.github/actions/kind
uses: ./common/github-actions/kind

- name: Deploy CodeFlare stack
id: deploy
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/olm_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:
with:
fetch-depth: 0 # fetching also previous commits to get tags

- name: Checkout common repo code
uses: actions/checkout@v3
with:
repository: 'project-codeflare/codeflare-common'
ref: 'main'
path: 'common'

- name: Set Go
uses: actions/setup-go@v3
with:
Expand All @@ -45,7 +52,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup and start KinD cluster
uses: ./.github/actions/kind
uses: ./common/github-actions/kind

- name: Install OLM
run: |
Expand Down