Skip to content

Commit 84bf078

Browse files
ryan-williamsclaude
andcommitted
Add required AMI to demo workflows
Now that ec2_image_id is required (no hardcoded fallback), the demo workflows need to explicitly specify an AMI. Added Ubuntu 24.04 LTS x86_64 AMI (ami-0e86e20dae9224db8) to: - demo-archs.yml (x86 job) - demo-multi-instance.yml - demo-job-seq.yml - demo-matrix-wide.yml - demo-multi-job.yml The GPU demos and ARM job already had AMIs specified. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f63e0a2 commit 84bf078

5 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/demo-archs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: ./.github/workflows/runner.yml
1313
with:
1414
ec2_instance_type: t3.medium
15-
# Ubuntu 24.04 LTS x86_64 (default AMI)
15+
ec2_image_id: ami-0e86e20dae9224db8 # Ubuntu 24.04 LTS x86_64 (us-east-1)
1616
secrets: inherit
1717
arm:
1818
name: Launch ARM

.github/workflows/demo-job-seq.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
ec2:
2424
uses: ./.github/workflows/runner.yml
2525
secrets: inherit
26+
with:
27+
ec2_image_id: ami-0e86e20dae9224db8 # Ubuntu 24.04 LTS x86_64 (us-east-1)
2628

2729
prepare:
2830
needs: ec2

.github/workflows/demo-matrix-wide.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
ec2:
1010
uses: ./.github/workflows/runner.yml
1111
secrets: inherit
12+
with:
13+
ec2_image_id: ami-0e86e20dae9224db8 # Ubuntu 24.04 LTS x86_64 (us-east-1)
1214
test-matrix:
1315
needs: ec2
1416
runs-on: ${{ needs.ec2.outputs.id }}

.github/workflows/demo-multi-instance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
secrets: inherit
2626
with:
2727
instance_count: ${{ inputs.instance_count }}
28+
ec2_image_id: ami-0e86e20dae9224db8 # Ubuntu 24.04 LTS x86_64 (us-east-1)
2829

2930
parallel-jobs:
3031
needs: ec2

.github/workflows/demo-multi-job.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
secrets: inherit
1515
with:
1616
instance_count: "2"
17+
ec2_image_id: ami-0e86e20dae9224db8 # Ubuntu 24.04 LTS x86_64 (us-east-1)
1718

1819
# First job type - runs on first instance
1920
build-job:

0 commit comments

Comments
 (0)