diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-10 02:10:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 03:10:20 +0200 |
commit | 4af98fa82f87dedfa6cc4a48231329fbc948836b (patch) | |
tree | 105ecacd528579778bbd44691c749623f19840f6 /ext/websocket/autobahn/fuzzingclient.js | |
parent | 41ba7cdadeac37ced111737987994866efeb0e1b (diff) |
build: remove --unstable flags from CI (#25548)
This commit removes usages of deprecated `--unstable` flag
from the CI scripts.
Diffstat (limited to 'ext/websocket/autobahn/fuzzingclient.js')
-rw-r--r-- | ext/websocket/autobahn/fuzzingclient.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/websocket/autobahn/fuzzingclient.js b/ext/websocket/autobahn/fuzzingclient.js index a8cf0c2b7..fed0fd6aa 100644 --- a/ext/websocket/autobahn/fuzzingclient.js +++ b/ext/websocket/autobahn/fuzzingclient.js @@ -11,7 +11,7 @@ const AUTOBAHN_TESTSUITE_DOCKER = "crossbario/autobahn-testsuite:0.8.2@sha256:5d4ba3aa7d6ab2fdbf6606f3f4ecbe4b66f205ce1cbc176d6cdf650157e52242"; const self = Deno.execPath(); -$`${self} run -A --unstable --config ${pwd}/../../../tests/config/deno.json ${pwd}/autobahn_server.js` +$`${self} run -A --config ${pwd}/../../../tests/config/deno.json ${pwd}/autobahn_server.js` .spawn(); for (let i = 0; i < 6; i++) { |