mirror of
https://github.com/audacity/audacity-actions.git
synced 2025-12-11 19:56:38 -06:00
Fixes PDB collection when short_path is used
This commit is contained in:
parent
8f3ff67b02
commit
46b4e2b71c
2
dist/build/index.js
vendored
2
dist/build/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/configure/index.js
vendored
2
dist/configure/index.js
vendored
File diff suppressed because one or more lines are too long
11
lib/debug.js
11
lib/debug.js
@ -303,7 +303,10 @@ async function processDependenciesDebugInformation(buildDir, buildType, performU
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Collect PDBs
|
// Collect PDBs
|
||||||
const pdbs = await fileUtils.globFiles(path.join(conanCachePath, 'data/**/build/**/*.pdb'));
|
const pdbs = await fileUtils.globFiles([
|
||||||
|
path.join(conanCachePath, 'data/**/build/**/*.pdb'),
|
||||||
|
'C:/.conan/**/*.pdb'
|
||||||
|
]);
|
||||||
|
|
||||||
for(const pdb of pdbs) {
|
for(const pdb of pdbs) {
|
||||||
await addToSymStore(pdb);
|
await addToSymStore(pdb);
|
||||||
@ -312,7 +315,11 @@ async function processDependenciesDebugInformation(buildDir, buildType, performU
|
|||||||
if(pdbs.length > 0) {
|
if(pdbs.length > 0) {
|
||||||
await uploadSymStore();
|
await uploadSymStore();
|
||||||
|
|
||||||
const dlls = await fileUtils.globFiles(path.join(conanCachePath, 'data/**/build/**/*.dll'));
|
const dlls = await fileUtils.globFiles([
|
||||||
|
path.join(conanCachePath, 'data/**/build/**/*.dll'),
|
||||||
|
'C:/.conan/**/*.dll'
|
||||||
|
]);
|
||||||
|
|
||||||
await uploadAllToSentry([...pdbs, ...dlls])
|
await uploadAllToSentry([...pdbs, ...dlls])
|
||||||
}
|
}
|
||||||
} else if (process.platform == 'darwin') {
|
} else if (process.platform == 'darwin') {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user