File tree Expand file tree Collapse file tree 1 file changed +3
-16
lines changed Expand file tree Collapse file tree 1 file changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -61,11 +61,6 @@ BUILD_PROFILES = {
61
61
default_exts : FULL_EXTS ,
62
62
user_exts : [ ]
63
63
} ,
64
- "full-js" => {
65
- debug : false ,
66
- default_exts : FULL_EXTS ,
67
- user_exts : %w[ js witapi ]
68
- } ,
69
64
"full-js-debug" => {
70
65
debug : true ,
71
66
default_exts : FULL_EXTS ,
@@ -78,17 +73,9 @@ BUILDS =
78
73
. product ( BUILD_SOURCES . keys , BUILD_PROFILES . keys )
79
74
. select do |target , _ , profile_name |
80
75
if target == "wasm32-unknown-emscripten"
81
- profile = BUILD_PROFILES [ profile_name ]
82
- user_exts = profile [ :user_exts ]
83
- # Skip builds with JS extensions or debug mode for Emscripten
84
- # because JS extensions have incompatible import/export entries
85
- # and debug mode is rarely used for Emscripten.
86
- next (
87
- !(
88
- user_exts . include? ( "witapi" ) || user_exts . include? ( "js" ) ||
89
- profile [ :debug ]
90
- )
91
- )
76
+ # Builds only full for Emscripten since minimal, js, debug
77
+ # builds are rarely used with Emscripten.
78
+ next profile_name == "full"
92
79
end
93
80
next true
94
81
end
You can’t perform that action at this time.
0 commit comments