Skip to content

Commit 28ded95

Browse files
authored
Merge pull request #869 from dscho/work-around-msys2's-gcc-upgrade
Work around msys2's recent GCC upgrade
2 parents cdb0f0f + 3ba5a65 commit 28ded95

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

dist/index.js

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/git.ts

+11
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,17 @@ export async function getViaGit(
107107
per_page: 1
108108
})
109109
head_sha = info.data.workflow_runs[0].head_sha
110+
/*
111+
* There was a GCC upgrade to v14.1 that broke the build with `DEVELOPER=1`,
112+
* and `ci-artifacts` was not updated to test-build with `DEVELOPER=1` (this
113+
* was fixed in https://github.com/git-for-windows/git-sdk-64/pull/83).
114+
*
115+
* Work around that by forcing the incorrectly-passing revision back to the
116+
* last one before that GCC upgrade.
117+
*/
118+
if (head_sha === '5f6ba092f690c0bbf84c7201be97db59cdaeb891') {
119+
head_sha = 'e37e3f44c1934f0f263dabbf4ed50a3cfb6eaf71'
120+
}
110121
} else {
111122
const info = await octokit.repos.getBranch({
112123
owner,

0 commit comments

Comments
 (0)