Skip to content

Commit 0bec4ef

Browse files
committed
fix: fix mingw version satisfaction check
1 parent ed3b715 commit 0bec4ef

10 files changed

+16
-26
lines changed

dist/legacy/assets/actions_python-MeVtF9-W.js dist/legacy/assets/actions_python-B7InDb2U.js

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

dist/legacy/assets/actions_python-MeVtF9-W.js.map dist/legacy/assets/actions_python-B7InDb2U.js.map

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

dist/legacy/setup-cpp.js

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

dist/legacy/setup-cpp.js.map

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

dist/modern/assets/actions_python-B6K7L8C_.mjs dist/modern/assets/actions_python-Dr1ce8ZD.mjs

+2-2
Large diffs are not rendered by default.

dist/modern/assets/actions_python-B6K7L8C_.mjs.map dist/modern/assets/actions_python-Dr1ce8ZD.mjs.map

+1-1
Large diffs are not rendered by default.

dist/modern/setup-cpp.mjs

+1-1
Large diffs are not rendered by default.

dist/modern/setup-cpp.mjs.map

+1-1
Large diffs are not rendered by default.

src/gcc/gccMatcher.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { info, warning } from "ci-log"
22
import { pathExists } from "path-exists"
3-
import { join } from "path/posix"
3+
import { join } from "path"
44
import { dirname } from "./gcc.ts"
55

66
export async function addGccLoggingMatcher() {

src/gcc/mingw.ts

+5-15
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,6 @@ export async function getMinGWPackageInfo(
104104
ia32: "i386",
105105
} as Record<string, string | undefined>
106106

107-
// extract the base version by coercing the version
108-
const versionCoerce = semverCoerce(version)
109-
if (versionCoerce === null) {
110-
throw new Error(`Invalid MinGW version requested '${version}'`)
111-
}
112-
113107
const runtime = extractMinGWRuntime(version)
114108
const threadModel = extractMinGWThreadModel(version)
115109
const exceptionModel = extractMingwExceptionModel(version)
@@ -122,15 +116,11 @@ export async function getMinGWPackageInfo(
122116
mingwArchMap[arch] ?? arch,
123117
],
124118
filterName: (assetName) => {
125-
const assetRuntime = extractMinGWRuntime(assetName)
126-
const assetThreadModel = extractMinGWThreadModel(assetName)
127-
const assetExceptionModel = extractMingwExceptionModel(assetName)
128-
129-
return (runtime === undefined || runtime === assetRuntime)
130-
&& (threadModel === undefined || threadModel === assetThreadModel)
131-
&& (assetExceptionModel === undefined || assetExceptionModel === exceptionModel)
119+
return (runtime === undefined || runtime === extractMinGWRuntime(assetName))
120+
&& (threadModel === undefined || threadModel === extractMinGWThreadModel(assetName))
121+
&& (exceptionModel === undefined || exceptionModel === extractMingwExceptionModel(assetName))
132122
},
133-
versionSatisfies: (assetVersion, _version) => {
123+
versionSatisfies: (assetVersion, versionRange) => {
134124
// extract the base version by coercing the version
135125
const assetCoerce = semverCoerce(assetVersion)
136126
if (assetCoerce === null) {
@@ -139,7 +129,7 @@ export async function getMinGWPackageInfo(
139129

140130
// if the asset version is satisfied by the version
141131
// and the runtime and thread model match or not specified
142-
return semverSatisfies(assetCoerce, `^${versionCoerce}`)
132+
return semverSatisfies(assetCoerce, versionRange)
143133
&& (runtime === undefined || runtime === extractMinGWRuntime(assetVersion))
144134
&& (threadModel === undefined || threadModel === extractMinGWThreadModel(assetVersion))
145135
},

0 commit comments

Comments
 (0)