Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Stop building VS Code image (microsoft/vscode-remote-release#8994)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Oct 3, 2023
1 parent 4c42370 commit 600571b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion build/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"githubRepoName": "microsoft/vscode-dev-containers",
"containersPathInRepo": "containers",
"historyFolderName": "history",
"repoContainersToBuildPath": "repository-containers/images",
"scriptLibraryPathInRepo": "script-library",
"scriptLibraryFolderNameInDefinition": "library-scripts",
"historyUrlPrefix": "https://github.com/microsoft/vscode-dev-containers/tree/main/containers/",
Expand Down
13 changes: 0 additions & 13 deletions build/src/utils/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,6 @@ async function loadConfig(repoPath) {
}
});

// Load repo containers to build
const repoContainersToBuildPath = path.join(repoPath, getConfig('repoContainersToBuildPath', 'repository-containers/build'));
const repoContainerManifestFiles = glob.sync(`${repoContainersToBuildPath}/**/${definitionBuildConfigFile}`);
await asyncUtils.forEach(repoContainerManifestFiles, async (manifestFilePath) => {
const definitionPath = path.resolve(path.dirname(manifestFilePath));
const definitionId = path.relative(repoContainersToBuildPath, definitionPath);
allDefinitionPaths[definitionId] = {
path: definitionPath,
relativeToRootPath: path.relative(repoPath, definitionPath)
}
await loadDefinitionManifest(manifestFilePath, definitionId);
});

// Populate image variants and tag lookup
for (let definitionId in config.definitionBuildSettings) {
const buildSettings = config.definitionBuildSettings[definitionId];
Expand Down

0 comments on commit 600571b

Please sign in to comment.