Skip to content

Commit

Permalink
ci: Disable IDBFS support temporarily
Browse files Browse the repository at this point in the history
Until dotnet/runtime 65436 is fixed
  • Loading branch information
jeromelaban committed Feb 23, 2022
1 parent a50323e commit aafed17
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts
Expand Up @@ -76,7 +76,8 @@ namespace Uno.WebAssembly.Bootstrap {
}
);

(<any>globalThis).IDBFS = IDBFS;
// IDBFS is disabled until https://github.com/dotnet/runtime/issues/65436 is fixed
// (<any>globalThis).IDBFS = IDBFS;
}
catch (e) {
throw `.NET runtime initialization failed (${e})`
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.Wasm.StaticLinking.Aot.UITests/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Uno.Wasm.StaticLinking.Aot.UITests/app.ts
Expand Up @@ -42,7 +42,7 @@ const path = require("path");
console.log(`Results: ${value}`);
}

const expected = "InterpreterAndAOT;42;42.30;42.7;e42;True;true;True;1.3;1.4;3.0;0;42;requireJs:true;";
const expected = "InterpreterAndAOT;42;42.30;42.7;e42;True;false;True;1.3;1.4;3.0;0;42;requireJs:true;";

if (value !== expected) {
console.log(`Invalid results got ${value}, expected ${expected}`);
Expand Down

0 comments on commit aafed17

Please sign in to comment.