Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 8232d85

Browse files
committed
Don't pack QUIC agent by default.
QUIC agent depends on QUIC SDK, which is not supported by testing system.
1 parent 8278447 commit 8232d85

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@
130130
"path" : "source/agent/addons/resourceUtil"
131131
},
132132
"quic" : {
133-
"path" : "source/agent/addons/quic"
133+
"path" : "source/agent/addons/quic",
134+
"description": "QUIC agent supports WebTransport - QuicTransport connections. Experimental feature."
134135
}
135136
}

scripts/pack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function getPackList(targets) {
132132

133133
var packList = targets.filter((element) => {
134134
// Don't include QUIC agent by default until CI is added for QUIC SDK.
135-
if (options.target.includes('all') && !element.rules.name != 'quic-agent') return true;
135+
if (options.target.includes('all') && element.rules.name !== 'quic-agent') return true;
136136
return options.target.includes(element.rules.name);
137137
});
138138
if (packList.length === 0) {

0 commit comments

Comments
 (0)