Skip to content

Commit

Permalink
remove keep-alive.
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielye committed Jan 3, 2025
1 parent 671065e commit 6e94c1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/ensure-builder/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ runs:
ec2_subnet_id: subnet-4cfabd25
ec2_security_group_id: sg-0ccd4e5df0dcca0c9
ec2_key_name: "build-instance"
ec2_instance_tags: '[{"Key": "Keep-Alive", "Value": "true"},{"Key": "Builder", "Value": "true"}]'
ec2_instance_tags: '[{"Key": "Builder", "Value": "true"}]'
# This disambiguates from 'tester'
- name: Set BUILDER_SPOT_IP and BUILDER_SPOT_KEY
shell: bash
Expand Down Expand Up @@ -100,4 +100,4 @@ runs:
- name: Report Exit Code
shell: bash
if: steps.test.outputs.exit_code != '155' || inputs.spot_strategy == 'None'
run: exit ${{ steps.test.outputs.exit_code }}
run: exit ${{ steps.test.outputs.exit_code }}
3 changes: 1 addition & 2 deletions .github/ensure-tester/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ runs:
ec2_subnet_id: subnet-4cfabd25
ec2_security_group_id: sg-0ccd4e5df0dcca0c9
ec2_key_name: "build-instance"
ec2_instance_tags: '[{"Key": "Keep-Alive", "Value": "true"}]'

- name: Ensure Tester Cleanup
uses: gacts/run-and-post-run@v1
Expand Down Expand Up @@ -107,4 +106,4 @@ runs:
- name: Report Exit Code
shell: bash
if: steps.test.outputs.exit_code != '155' || inputs.spot_strategy == 'None'
run: exit ${{ steps.test.outputs.exit_code }}
run: exit ${{ steps.test.outputs.exit_code }}

0 comments on commit 6e94c1a

Please sign in to comment.