-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d0d015
commit 0721024
Showing
1 changed file
with
2 additions
and
4 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 |
---|---|---|
|
@@ -20,17 +20,15 @@ jobs: | |
&& kubectl version --client | ||
- name: Install kind | ||
run: go install sigs.k8s.io/[email protected] | ||
- name: Configure SSH Agent | ||
run: | | ||
eval `ssh-agent -s` | ||
ssh-add - <<< '${{ secrets.K8S_CI_SECRET }}' | ||
- name: Create local k8s cluster | ||
run: | | ||
pwd | ||
kind create cluster --name regression-tester --config .github/workflows/kind-config.yaml.sample | ||
kubectl cluster-info --context kind-regression-tester | ||
- name: Clone and build devnet images | ||
run: | | ||
eval `ssh-agent -s` | ||
ssh-add - <<< '${{ secrets.K8S_CI_SECRET }}' | ||
git clone https://github.com/maticnetwork/polygon-devnets | ||
cd polygon-devnets/docker/pos | ||
make all DEV=true K8S_ENV=true K8S_NS=test | ||
|