@@ -832,31 +832,32 @@ jobs:
832
832
# path: /tmp/kubernetes_logs/*
833
833
834
834
# In case of self-hosted EC2 errors, remove this block.
835
- stop-helm-acceptance-test-runner :
836
- name : " Platform: Stop Helm Acceptance Test EC2 Runner"
837
- timeout-minutes : 10
838
- needs :
839
- - start-helm-acceptance-test-runner # required to get output from the start-runner job
840
- - helm-acceptance-test # required to wait when the main job is done
841
- - find_valid_pat
842
- runs-on : ubuntu-latest
843
- # Always is required to stop the runner even if the previous job has errors. However always() runs even if the previous step is skipped.
844
- # Thus, we check for skipped here.
845
- if : ${{ always() && needs.start-helm-acceptance-test-runner.result != 'skipped'}}
846
- steps :
847
- - name : Configure AWS credentials
848
- uses : aws-actions/configure-aws-credentials@v1
849
- with :
850
- aws-access-key-id : ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
851
- aws-secret-access-key : ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
852
- aws-region : us-east-2
853
- - name : Stop EC2 runner
854
- uses :
supertopher/[email protected]
855
- with :
856
- mode : stop
857
- github-token : ${{ needs.find_valid_pat.outputs.pat }}
858
- label : ${{ needs.start-helm-acceptance-test-runner.outputs.label }}
859
- ec2-instance-id : ${{ needs.start-helm-acceptance-test-runner.outputs.ec2-instance-id }}
835
+ # Todo: Kyryl turn this on.
836
+ # stop-helm-acceptance-test-runner:
837
+ # name: "Platform: Stop Helm Acceptance Test EC2 Runner"
838
+ # timeout-minutes: 10
839
+ # needs:
840
+ # - start-helm-acceptance-test-runner # required to get output from the start-runner job
841
+ # - helm-acceptance-test # required to wait when the main job is done
842
+ # - find_valid_pat
843
+ # runs-on: ubuntu-latest
844
+ # # Always is required to stop the runner even if the previous job has errors. However always() runs even if the previous step is skipped.
845
+ # # Thus, we check for skipped here.
846
+ # if: ${{ always() && needs.start-helm-acceptance-test-runner.result != 'skipped'}}
847
+ # steps:
848
+ # - name: Configure AWS credentials
849
+ # uses: aws-actions/configure-aws-credentials@v1
850
+ # with:
851
+ # aws-access-key-id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
852
+ # aws-secret-access-key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
853
+ # aws-region: us-east-2
854
+ # - name: Stop EC2 runner
855
+ # uses: supertopher/[email protected]
856
+ # with:
857
+ # mode: stop
858
+ # github-token: ${{ needs.find_valid_pat.outputs.pat }}
859
+ # label: ${{ needs.start-helm-acceptance-test-runner.outputs.label }}
860
+ # ec2-instance-id: ${{ needs.start-helm-acceptance-test-runner.outputs.ec2-instance-id }}
860
861
861
862
862
863
@@ -869,7 +870,8 @@ jobs:
869
870
- octavia-cli-build
870
871
- platform-build
871
872
- kube-acceptance-test
872
- - helm-acceptance-test
873
+ # Todo: Kyryl turn this on.
874
+ # - helm-acceptance-test
873
875
if : ${{ failure() && github.ref == 'refs/heads/master' }}
874
876
steps :
875
877
- name : Publish to OSS Build Failure Slack Channel
@@ -894,7 +896,8 @@ jobs:
894
896
- octavia-cli-build
895
897
- platform-build
896
898
- kube-acceptance-test
897
- - helm-acceptance-test
899
+ # Todo: Kyryl turn this on.
900
+ # - helm-acceptance-test
898
901
if : success()
899
902
steps :
900
903
- name : Get Previous Workflow Status
0 commit comments