{"id":26866013,"url":"https://github.com/samsmithnz/parallelworkflowsdemo","last_synced_at":"2025-06-10T20:09:31.243Z","repository":{"id":59947089,"uuid":"539563249","full_name":"samsmithnz/ParallelWorkflowsDemo","owner":"samsmithnz","description":"A demo to show parallel workflow benefits","archived":false,"fork":false,"pushed_at":"2023-01-19T14:16:05.000Z","size":974,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-04-28T01:24:23.653Z","etag":null,"topics":["actions","hosted-runners","parallel-jobs"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/samsmithnz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-21T15:40:57.000Z","updated_at":"2024-04-28T01:24:23.654Z","dependencies_parsed_at":"2023-02-11T03:20:13.561Z","dependency_job_id":null,"html_url":"https://github.com/samsmithnz/ParallelWorkflowsDemo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samsmithnz%2FParallelWorkflowsDemo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samsmithnz%2FParallelWorkflowsDemo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samsmithnz%2FParallelWorkflowsDemo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samsmithnz%2FParallelWorkflowsDemo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samsmithnz","download_url":"https://codeload.github.com/samsmithnz/ParallelWorkflowsDemo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246418699,"owners_count":20773935,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","hosted-runners","parallel-jobs"],"created_at":"2025-03-31T04:53:18.113Z","updated_at":"2025-03-31T04:53:18.526Z","avatar_url":"https://github.com/samsmithnz.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# ParallelWorkflowsDemo\nA demo to show parallel workflow benefits\n\nSimple workflow to build/test (time - 1min 30s)\n```mermaid\n  graph LR;\n      buildAll[Build website 30s]--\u003etestAll[Test website 30s]--\u003edeployAll[Deploy website 30s]\n```\n\nSimple workflow to build test with parallal jobs (time - 1 min)\n```mermaid\n  graph LR;\n      buildAll[Build website 30s]--\u003edeployAll[Deploy website 30s];\n      testAll[Test website 30s]--\u003edeployAll[Deploy website 30s];\n```\n\nComplex workflow to build, test, then deploy our app. (total time: ~6 mins)\n```mermaid\n  graph LR;\n      ci((CI))--\u003ebuildAll[Build store website, \u003cbr/\u003epayment service, \u003cbr/\u003e\u0026 inventory service \u003cbr/\u003e1m 30s]--\u003etestAll[Test store website, \u003cbr/\u003epayment service, \u003cbr/\u003e\u0026 inventory service \u003cbr/\u003e1m 30s]--\u003ecd((CD));\n      cd((CD))--\u003edeployAll[Deploy store website, \u003cbr/\u003epayment service, \u003cbr/\u003e\u0026 inventory service \u003cbr/\u003e1m 30s]--\u003esmoke[Smoke test 30s];\n```\n\nComplex workflow, using parallel jobs, on the same dataset (~2 mins)\n```mermaid\n  graph LR;\n      ci((CI))--\u003ebuildWeb[Build store website 30s]--\u003etestWeb[Test store website 30s]--\u003ecd((CD));\n      ci((CI))--\u003ebuildPay[Build payment service 30s]--\u003etestPay[Test payment service 30s]--\u003ecd((CD));\n      ci((CI))--\u003ebuildInv[Build inventory service 30s]--\u003etestInv[Test inventory service 30s]--\u003ecd((CD));\n      cd((CD))--\u003edeployWeb[Deploy store website 30s]--\u003esmoke[Smoke test 30s];\n      cd((CD))--\u003edeployPay[Deploy payment service 30s]--\u003esmoke[Smoke test 30s];\n      cd((CD))--\u003edeployInv[Deploy inventory service 30s]--\u003esmoke[Smoke test 30s];    \n```\n\nComplex workflow, using parallel jobs to run build and test tasks at the same time, on the same dataset (1:30 mins)\n```mermaid\n  graph LR;\n      ci((CI))--\u003ebuildWeb[Build store website 30s]--\u003ecd((CD));\n      ci((CI))--\u003ebuildPay[Build payment service 30s]--\u003ecd((CD));\n      ci((CI))--\u003ebuildInv[Build inventory service 30s]--\u003ecd((CD));\n      ci((CI))--\u003etestWeb[Test store website 30s]--\u003ecd((CD));\n      ci((CI))--\u003etestPay[Test payment service 30s]--\u003ecd((CD));\n      ci((CI))--\u003etestInv[Test inventory service 30s]--\u003ecd((CD));\n      cd((CD))--\u003edeployWeb[Deploy store website 30s]--\u003esmoke[Smoke test 30s];\n      cd((CD))--\u003edeployPay[Deploy payment service 30s]--\u003esmoke[Smoke test 30s];\n      cd((CD))--\u003edeployInv[Deploy inventory service 30s]--\u003esmoke[Smoke test 30s];    \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamsmithnz%2Fparallelworkflowsdemo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamsmithnz%2Fparallelworkflowsdemo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamsmithnz%2Fparallelworkflowsdemo/lists"}