Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
3a144ff
feat(stepfunctions-tasks): wip
go-to-k Sep 10, 2025
d4ba563
wip
go-to-k Sep 10, 2025
9c4e544
wip
go-to-k Sep 11, 2025
439f98a
docs
go-to-k Sep 11, 2025
42115fa
docs
go-to-k Sep 11, 2025
a4abaa8
unit tests
go-to-k Sep 11, 2025
74f9170
integ tets
go-to-k Sep 11, 2025
2574785
README
go-to-k Sep 11, 2025
15a2d03
integ
go-to-k Sep 11, 2025
5620912
platform=linux/amd64 in docker
go-to-k Sep 11, 2025
4a34f60
fargate integ
go-to-k Sep 11, 2025
e874755
integ
go-to-k Sep 11, 2025
2097747
Merge branch 'main' into sfn-tasks-ecs-capacity
go-to-k Sep 11, 2025
96a20a0
integ
go-to-k Sep 11, 2025
5b538c4
readme
go-to-k Sep 11, 2025
f1de60d
integ
go-to-k Sep 11, 2025
2db9236
docs
go-to-k Sep 11, 2025
ba80be9
readme
go-to-k Sep 11, 2025
dd83cee
Merge branch 'main' of https://github.com/go-to-k/aws-cdk into sfn-ta…
go-to-k Dec 13, 2025
5c3c47e
Merge branch 'main' of https://github.com/go-to-k/aws-cdk into sfn-ta…
go-to-k Dec 17, 2025
aa48631
apply review
go-to-k Dec 17, 2025
2d87a51
Merge branch 'main' into sfn-tasks-ecs-capacity
go-to-k Dec 17, 2025
893b56f
Merge branch 'main' into sfn-tasks-ecs-capacity
go-to-k Dec 23, 2025
99e5b7b
Merge branch 'main' into sfn-tasks-ecs-capacity
go-to-k Dec 28, 2025
6fa325b
wip
go-to-k Dec 29, 2025
a4988d1
Revert "wip"
go-to-k Dec 29, 2025
384f9ea
remove none
go-to-k Dec 29, 2025
78556e7
Update run-task.ts
go-to-k Dec 29, 2025
6720630
Update run-task.ts
go-to-k Dec 29, 2025
d19deb0
Update run-task.ts
go-to-k Dec 29, 2025
3690e55
Update run-task.ts
go-to-k Dec 29, 2025
d1edace
Update run-task.ts
go-to-k Dec 29, 2025
46ee32e
fix
go-to-k Dec 29, 2025
5315695
tweak
go-to-k Dec 30, 2025
d0e3fd7
merge CapacityProviderOptions
go-to-k Dec 30, 2025
a92b88f
Merge pull request #2 from go-to-k/sfn-tasks-exp
go-to-k Dec 30, 2025
f688e3c
Merge branch 'main' into sfn-tasks-ecs-capacity
go-to-k Dec 30, 2025
d2ea76c
Update integ.ec2-run-task-capacity-provider.ts
go-to-k Dec 30, 2025
4c9e8a7
Update integ.fargate-run-task-capacity-provider.ts
go-to-k Dec 30, 2025
c1d9bb0
Merge branch 'main' into sfn-tasks-ecs-capacity
Abogical Jan 5, 2026
dac3525
Merge branch 'main' into sfn-tasks-ecs-capacity
go-to-k Jan 5, 2026
6a48a60
validation
go-to-k Jan 5, 2026
4623178
Merge branch 'main' into sfn-tasks-ecs-capacity
mergify[bot] Jan 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM public.ecr.aws/docker/library/python:3.12
FROM --platform=linux/amd64 public.ecr.aws/docker/library/python:3.12
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because amd64 is used for cpu architecture in integ tests.

If this option is not specified, running the tests on Mac will result in an error during state machine execution.

ADD index.py .
CMD [ "python3", "./index.py" ]

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading