@@ -175,6 +175,7 @@ The \`tag-git\` workflow run [was started](https://url-to-tag-git/)
175175git-artifacts-x86_64 run already exists at <url-to-existing-x86_64-run>.
176176The \`git-artifacts-i686\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
177177The \`git-artifacts-aarch64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
178+ The \`git-artifacts-ucrt64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
178179` )
179180 return { html_url : 'https://github.com/git-for-windows/git/pull/4322#issuecomment-1450703020' }
180181 }
@@ -461,7 +462,8 @@ let mockListCheckRunsForCommit = jest.fn((_context, _token, _owner, _repo, rev,
461462 const id = {
462463 'git-artifacts-x86_64' : 13010015190 ,
463464 'git-artifacts-i686' : 13010015938 ,
464- 'git-artifacts-aarch64' : 13010016895
465+ 'git-artifacts-aarch64' : 13010016895 ,
466+ 'git-artifacts-ucrt64' : 13010017042
465467 } [ checkRunName ]
466468 const output = {
467469 title : 'Build Git v2.48.0-rc2.windows.1-472-g0c796d3013-20250128120446 artifacts' ,
@@ -499,6 +501,7 @@ let mockListCheckRunsForCommit = jest.fn((_context, _token, _owner, _repo, rev,
499501 'git-artifacts-x86_64' : 8664 ,
500502 'git-artifacts-i686' : 686 ,
501503 'git-artifacts-aarch64' :64 ,
504+ 'git-artifacts-ucrt64' : 64064
502505 } [ checkRunName ]
503506 const output = {
504507 title : 'Build already-tagged artifacts' ,
@@ -855,6 +858,7 @@ test('a completed `tag-git` run triggers `git-artifacts` runs', async () => {
855858 body : `git-artifacts-x86_64 run already exists at <url-to-existing-x86_64-run>.
856859The \`git-artifacts-i686\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
857860The \`git-artifacts-aarch64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
861+ The \`git-artifacts-ucrt64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
858862` ,
859863 headers : undefined ,
860864 status : undefined
@@ -925,25 +929,31 @@ The \`tag-git\` workflow run [was started](dispatched-workflow-tag-git.yml)`,
925929The \`git-artifacts-x86_64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
926930The \`git-artifacts-i686\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
927931The \`git-artifacts-aarch64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
932+ The \`git-artifacts-ucrt64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
928933` ,
929934 headers : undefined ,
930935 status : undefined
931936 } )
932937 expect ( mockGetInstallationAccessToken ) . toHaveBeenCalled ( )
933938 expect ( mockGitHubApiRequestAsApp ) . not . toHaveBeenCalled ( )
934- expect ( dispatchedWorkflows ) . toHaveLength ( 3 )
939+ expect ( dispatchedWorkflows ) . toHaveLength ( 4 )
935940 expect ( dispatchedWorkflows [ 0 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
936941 expect ( dispatchedWorkflows [ 0 ] . payload . inputs ) . toEqual ( {
937- architecture : 'aarch64 ' ,
942+ architecture : 'ucrt64 ' ,
938943 tag_git_workflow_run_id : "341"
939944 } )
940945 expect ( dispatchedWorkflows [ 1 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
941946 expect ( dispatchedWorkflows [ 1 ] . payload . inputs ) . toEqual ( {
942- architecture : 'i686 ' ,
947+ architecture : 'aarch64 ' ,
943948 tag_git_workflow_run_id : "341"
944949 } )
945950 expect ( dispatchedWorkflows [ 2 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
946951 expect ( dispatchedWorkflows [ 2 ] . payload . inputs ) . toEqual ( {
952+ architecture : 'i686' ,
953+ tag_git_workflow_run_id : "341"
954+ } )
955+ expect ( dispatchedWorkflows [ 3 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
956+ expect ( dispatchedWorkflows [ 3 ] . payload . inputs ) . toEqual ( {
947957 architecture : 'x86_64' ,
948958 tag_git_workflow_run_id : "341"
949959 } )
@@ -1019,7 +1029,7 @@ test('a completed `release-git` run updates the `main` branch in git-for-windows
10191029 }
10201030} )
10211031
1022- test ( 'the third completed `git-artifacts-<arch>` check-run triggers an `upload-snapshot`' , async ( ) => {
1032+ test ( 'the fourth completed `git-artifacts-<arch>` check-run triggers an `upload-snapshot`' , async ( ) => {
10231033 const context = makeContext ( {
10241034 action : 'completed' ,
10251035 check_run : {
@@ -1075,7 +1085,8 @@ test('the third completed `git-artifacts-<arch>` check-run triggers an `upload-s
10751085 inputs : {
10761086 git_artifacts_aarch64_workflow_run_id : "13010016895" ,
10771087 git_artifacts_i686_workflow_run_id : "13010015938" ,
1078- git_artifacts_x86_64_workflow_run_id : "13010015190"
1088+ git_artifacts_x86_64_workflow_run_id : "13010015190" ,
1089+ git_artifacts_ucrt64_workflow_run_id : "13010017042"
10791090 } ,
10801091 return_run_details : true
10811092 }
0 commit comments