-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathgenMatrix.js
More file actions
79 lines (59 loc) · 2.46 KB
/
Copy pathgenMatrix.js
File metadata and controls
79 lines (59 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'use strict';
const path = require('path');
const fs = require('fs');
const testFiles = ['genMatrix.js', '.github/workflows/build-test.yml'];
const nodeDirRegex = /^\d+$/;
const areTestFilesChanged = (changedFiles) =>
changedFiles.some((file) => testFiles.includes(file));
// Returns a list of the child directories in the given path
const getChildDirectories = (parent) =>
fs
.readdirSync(parent, { withFileTypes: true })
.filter((dirent) => dirent.isDirectory())
.map(({ name }) => path.resolve(parent, name));
const getNodeVersionDirs = (base) =>
getChildDirectories(base).filter((childPath) =>
nodeDirRegex.test(path.basename(childPath)),
);
// Returns the paths of Dockerfiles that are at: base/*/Dockerfile
const getDockerfilesInChildDirs = (base) =>
getChildDirectories(base).map((childDir) =>
path.resolve(childDir, 'Dockerfile'),
);
const getAllDockerfiles = (base) =>
getNodeVersionDirs(base).flatMap(getDockerfilesInChildDirs);
const getAffectedDockerfiles = (filesAdded, filesModified, filesRenamed) => {
const files = [...filesAdded, ...filesModified, ...filesRenamed];
// If the test files were changed, include everything
if (areTestFilesChanged(files)) {
console.log('Test files changed so scheduling all Dockerfiles');
return getAllDockerfiles(__dirname);
}
const modifiedDockerfiles = files.filter((file) =>
file.endsWith('/Dockerfile'),
);
// Get Dockerfiles affected by modified docker-entrypoint.sh files
const entrypointAffectedDockerfiles = files
.filter((file) => file.endsWith('/docker-entrypoint.sh'))
.map((file) => path.resolve(path.dirname(file), 'Dockerfile'));
return [...modifiedDockerfiles, ...entrypointAffectedDockerfiles];
};
const getFullNodeVersionFromDockerfile = (file) =>
fs.readFileSync(file, 'utf8').match(/^ENV NODE_VERSION=(\d*\.*\d*\.\d*)/m)[1];
const getDockerfileMatrixEntry = (file) => {
const [variant] = path.dirname(file).split(path.sep).slice(-1);
const version = getFullNodeVersionFromDockerfile(file);
return {
version,
variant,
};
};
const generateBuildMatrix = (filesAdded, filesModified, filesRenamed) => {
const dockerfiles = [
...new Set(getAffectedDockerfiles(filesAdded, filesModified, filesRenamed)),
];
const entries = dockerfiles.map(getDockerfileMatrixEntry);
// Return null if there are no entries so we can skip the matrix step
return entries.length ? { include: entries } : null;
};
module.exports = generateBuildMatrix;