Skip to content
Snippets Groups Projects
Commit 04205b4c authored by michael.minelli's avatar michael.minelli
Browse files

Move to Gitbeaker

parent 83b0e5d3
Branches
No related tags found
No related merge requests found
Pipeline #30374 passed
...@@ -6,3 +6,5 @@ ...@@ -6,3 +6,5 @@
# Datasource local storage ignored files # Datasource local storage ignored files
/dataSources/ /dataSources/
/dataSources.local.xml /dataSources.local.xml
# GitHub Copilot persisted chat sessions
/copilot/chatSessions
...@@ -50,9 +50,11 @@ async function downloadImmutablesFiles() { ...@@ -50,9 +50,11 @@ async function downloadImmutablesFiles() {
} }
exerciseAssignment.immutable.forEach(immutableFile => { exerciseAssignment.immutable.forEach(immutableFile => {
const filePath = path.join(Config.folders.project, immutableFile.file_path); if ( typeof immutableFile.content === 'string' ) {
fs.mkdirSync(path.dirname(filePath), { recursive: true }); const filePath = path.join(Config.folders.project, immutableFile.file_path);
fs.writeFileSync(filePath, immutableFile.content, { encoding: 'base64' }); fs.mkdirSync(path.dirname(filePath), { recursive: true });
fs.writeFileSync(filePath, immutableFile.content, { encoding: 'base64' });
}
}); });
haveResultsVolume = exerciseAssignment.assignmentFile.result.volume !== undefined; haveResultsVolume = exerciseAssignment.assignmentFile.result.volume !== undefined;
......
import SharedGitlabManager from '../shared/managers/SharedGitlabManager';
// NOT USED
// File present only for prevent errors from shared submodules
class GitlabManager extends SharedGitlabManager {
constructor() {
super('');
}
}
export default new GitlabManager();
\ No newline at end of file
Subproject commit 75fedb26c47bb6f707725307a79a45a13e62496d Subproject commit e1ffeb584f5c7805befd951cb82ca179eabcaabb
Subproject commit c4efbcfb2a50e7108e101fb673e84f87fad8e246 Subproject commit 488f4ee9aab9fb87d198af93fdb860cc626963d8
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment