Skip to content

Commit 1aefa84

Browse files
committed
Test
1 parent 663e895 commit 1aefa84

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

22/windows-2022/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ ENV NODE_CHECKSUM 3fc638727974262b4f65a6b1b43c22fb2d80671cdcb50e1237e0b05d1330aa
1313

1414
ENV GPG_VERSION 2.4.5_20240307
1515

16+
ENV GPG_TTY dwufhwuhf
17+
1618
RUN Invoke-WebRequest $('https://www.gnupg.org/ftp/gcrypt/binary/gnupg-w32-{0}.exe' -f $env:GPG_VERSION) -OutFile 'gpg-installer.exe'; \
1719
Start-Process -FilePath 'gpg-installer.exe' -ArgumentList '/S' -Wait; \
1820
Remove-Item gpg-installer.exe -Force; \

genMatrix.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ const getNodeVersionDirs = (base) => getChildDirectories(base)
2424

2525
// Returns the paths of Dockerfiles that are at: base/*/Dockerfile
2626
const getDockerfilesInChildDirs = (base) => getChildDirectories(base)
27+
.map((childDir) => {
28+
console.log(`Checking ${childDir}`);
29+
return childDir;
30+
})
2731
.filter((directory) => !windowsDirRegex.test(path.basename(directory)))
2832
.map((childDir) => path.resolve(childDir, 'Dockerfile'));
2933

0 commit comments

Comments
 (0)