Compare commits

...

6 Commits

Author SHA1 Message Date
Bruno Pitrus
cdd01b7e91
Merge 28b5c7be4a into 1709f8b501 2024-06-14 11:08:12 +10:00
VSCodium CI
1709f8b501 build(stable): update to commit 611f9bf 2024-06-13 18:34:39 +00:00
Baptiste Augrain
aed67b3d81 build: add flag to disable snaps 2024-06-13 20:20:59 +02:00
Baptiste Augrain
60ebbedbf8 build: add flag to disable snaps 2024-06-13 20:16:43 +02:00
Baptiste Augrain
5a769efcb9 build: add flag to disable snaps 2024-06-13 20:13:07 +02:00
Bruno Pitrus
28b5c7be4a
fixup: remove mangling in extensions/ (introduced in 1.80)
This also fixes the reproducibility issue mentioned in https://github.com/microsoft/vscode/issues/189124
2023-07-28 21:20:35 +02:00
4 changed files with 15 additions and 4 deletions

View File

@ -427,7 +427,7 @@ jobs:
platform:
- amd64
- arm64
if: needs.check.outputs.SHOULD_DEPLOY == 'yes'
if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && vars.DISABLE_SNAP != 'yes'
steps:
- uses: actions/checkout@v3

View File

@ -423,7 +423,7 @@ jobs:
platform:
- amd64
- arm64
if: needs.check.outputs.SHOULD_DEPLOY == 'yes'
if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && vars.DISABLE_SNAP != 'yes'
steps:
- uses: actions/checkout@v3

View File

@ -0,0 +1,11 @@
--- vscode-1.80.1/extensions/mangle-loader.js.old 2023-07-12 18:45:52.000000000 +0200
+++ vscode-1.80.1/extensions/mangle-loader.js 2023-07-28 11:55:01.177444702 +0200
@@ -37,7 +37,7 @@ function getMangledFileContents(projectP
* @type {webpack.LoaderDefinitionFunction}
*/
module.exports = async function (source, sourceMap, meta) {
- if (this.mode !== 'production') {
+ if (true) {
// Only enable mangling in production builds
return source;
}

View File

@ -1,4 +1,4 @@
{
"tag": "1.90.0",
"commit": "89de5a8d4d6205e5b11647eb6a74844ca23d2573"
"tag": "1.90.1",
"commit": "611f9bfce64f25108829dd295f54a6894e87339d"
}