Skip to content

Commit 148d43f

Browse files
sutaakaropenshift-merge-bot[bot]
authored andcommitted
Use dedicated KinD composite action from CodeFlare common
1 parent 23bffcc commit 148d43f

File tree

4 files changed

+16
-107
lines changed

4 files changed

+16
-107
lines changed

.github/actions/kind/action.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/resources-kind/kind.yaml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/e2e_tests.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ jobs:
3535
with:
3636
submodules: recursive
3737

38+
- name: Checkout common repo code
39+
uses: actions/checkout@v3
40+
with:
41+
repository: 'project-codeflare/codeflare-common'
42+
ref: 'main'
43+
path: 'common'
44+
3845
- name: Set Go
3946
uses: actions/setup-go@v3
4047
with:
@@ -46,7 +53,7 @@ jobs:
4653
token: ${{ secrets.GITHUB_TOKEN }}
4754

4855
- name: Setup and start KinD cluster
49-
uses: ./.github/actions/kind
56+
uses: ./common/github-actions/kind
5057

5158
- name: Deploy CodeFlare stack
5259
id: deploy

.github/workflows/olm_tests.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ jobs:
3434
with:
3535
fetch-depth: 0 # fetching also previous commits to get tags
3636

37+
- name: Checkout common repo code
38+
uses: actions/checkout@v3
39+
with:
40+
repository: 'project-codeflare/codeflare-common'
41+
ref: 'main'
42+
path: 'common'
43+
3744
- name: Set Go
3845
uses: actions/setup-go@v3
3946
with:
@@ -45,7 +52,7 @@ jobs:
4552
token: ${{ secrets.GITHUB_TOKEN }}
4653

4754
- name: Setup and start KinD cluster
48-
uses: ./.github/actions/kind
55+
uses: ./common/github-actions/kind
4956

5057
- name: Install OLM
5158
run: |

0 commit comments

Comments
 (0)