We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e09a6c commit 0ef7b62Copy full SHA for 0ef7b62
.github/workflows/k8s-e2e.yaml
@@ -90,7 +90,10 @@ jobs:
90
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
91
test_command_to_run: |
92
unset ENV_JOB_IMAGE
93
- nix develop -c sh -c "export KUBECONFIG=${KUBECONFIG} && cd lib && make k8s_test_e2e_ci"
+ cp $KUBECONFIG ./kubeconfig
94
+ echo "Kubeconfig copied to: $(pwd)/kubeconfig"
95
+ echo "Lines in kubeconfig: $(wc -l < ./kubeconfig)"
96
+ nix develop -c sh -c "export KUBECONFIG=$(pwd)/kubeconfig && cd lib && make k8s_test_e2e_ci"
97
artifacts_location: ./e2e/logs
98
publish_check_name: E2E Test Results
99
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments