Skip to content

Commit 7fa1f72

Browse files
authored
Merge pull request #12 from dscho/fix-the-path
Fix the PATH
2 parents 098bf8d + 6a51a40 commit 7fa1f72

File tree

4 files changed

+27
-19
lines changed

4 files changed

+27
-19
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
run: |
3838
set -x
3939
echo "This is the MSYS2 pseudo root: $(cygpath -aw /)"
40+
test "gcc is /mingw64/bin/gcc" = "$(type gcc)"
4041
printf '%s\n' \
4142
"#include <stdio.h>" \
4243
'' \

dist/index.js

+11-6
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.

main.ts

+14-12
Original file line numberDiff line numberDiff line change
@@ -29,32 +29,34 @@ async function run(): Promise<void> {
2929
useCache = false
3030
}
3131

32+
let needToDownload = true
3233
try {
3334
if (useCache && (await restoreCache([outputDirectory], id))) {
3435
core.info(`Cached ${id} was successfully restored`)
35-
return
36+
needToDownload = false
3637
}
3738
} catch (e) {
3839
core.warning(`Cannot use @actions/cache (${e})`)
3940
useCache = false
4041
}
4142

42-
core.info(`Downloading ${artifactName}`)
43-
await download(
44-
outputDirectory,
45-
verbose.match(/^\d+$/) ? parseInt(verbose) : verbose === 'true'
46-
)
43+
if (needToDownload) {
44+
core.info(`Downloading ${artifactName}`)
45+
await download(
46+
outputDirectory,
47+
verbose.match(/^\d+$/) ? parseInt(verbose) : verbose === 'true'
48+
)
4749

48-
if (useCache && !(await saveCache([outputDirectory], id))) {
49-
core.warning(`Failed to cache ${id}`)
50+
if (useCache && !(await saveCache([outputDirectory], id))) {
51+
core.warning(`Failed to cache ${id}`)
52+
}
5053
}
5154

5255
// Set up PATH so that Git for Windows' SDK's `bash.exe` is found
5356
core.addPath(`${outputDirectory}/usr/bin`)
54-
core.exportVariable(
55-
'MSYSTEM',
56-
architecture === 'i686' ? 'MING32' : 'MINGW64'
57-
)
57+
const msystem = architecture === 'i686' ? 'MING32' : 'MINGW64'
58+
core.addPath(`${outputDirectory}/${msystem.toLocaleLowerCase()}/bin`)
59+
core.exportVariable('MSYSTEM', msystem)
5860
} catch (error) {
5961
core.setFailed(error.message)
6062
}

0 commit comments

Comments
 (0)