Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2021-01-25 21:49:03 +0300
committerJames M Snell <jasnell@gmail.com>2021-01-30 18:49:28 +0300
commitc3d6d50309a5046c98475e99c13f48a8fee12ac7 (patch)
treec429781c87603dcd4905998bbc9bd073399c2f67 /.github
parentf763a80ab59bbaa0fcf5f3b0519a70336ee88744 (diff)
quic: remove quic
PR-URL: https://github.com/nodejs/node/pull/37067 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/CODEOWNERS15
-rw-r--r--.github/workflows/build-windows.yml4
-rw-r--r--.github/workflows/test-linux.yml16
-rw-r--r--.github/workflows/test-macos.yml4
4 files changed, 7 insertions, 32 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 47f7380d36f..a0e26501434 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -39,7 +39,7 @@
/doc/api/net.md @nodejs/net
/lib/dgram.js @nodejs/net
/lib/dns.js @nodejs/net
-/lib/net.js @nodejs/net @nodejs/quic
+/lib/net.js @nodejs/net
/lib/internal/dgram.js @nodejs/net
/lib/internal/dns/* @nodejs/net
/lib/internal/net.js @nodejs/net
@@ -59,7 +59,7 @@
/lib/crypto.js @nodejs/crypto
/lib/tls.js @nodejs/crypto @nodejs/net
/src/node_crypto* @nodejs/crypto
-/src/crypto/* @nodejs/crypto @nodejs/quic
+/src/crypto/* @nodejs/crypto
# http
@@ -68,7 +68,7 @@
/lib/_http_* @nodejs/http @nodejs/net
/lib/http.js @nodejs/http @nodejs/net
/lib/https.js @nodejs/crypto @nodejs/net @nodejs/http
-/src/node_http_common* @nodejs/http @nodejs/http2 @nodejs/quic @nodejs/net
+/src/node_http_common* @nodejs/http @nodejs/http2 @nodejs/net
/src/node_http_parser.cc @nodejs/http @nodejs/net
# http2
@@ -80,15 +80,6 @@
/src/node_http2* @nodejs/http2 @nodejs/net
/src/node_mem* @nodejs/http2
-# quic
-
-/deps/ngtcp2/ @nodejs/quic
-/deps/nghttp3/ @nodejs/quic
-/doc/api/quic.md @nodejs/quic
-/lib/internal/quic/ @nodejs/quic
-/src/node_bob* @nodejs/quic
-/src/quic/ @nodejs/quic
-
# modules
/doc/api/modules.md @nodejs/modules
diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml
index 2a021723e6f..d3e1e433924 100644
--- a/.github/workflows/build-windows.yml
+++ b/.github/workflows/build-windows.yml
@@ -14,7 +14,7 @@ env:
FLAKY_TESTS: dontcare
jobs:
- build-windows-with-quic:
+ build-windows:
if: github.event.pull_request.draft == false
runs-on: windows-latest
steps:
@@ -28,4 +28,4 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Build
- run: ./vcbuild.bat experimental-quic
+ run: ./vcbuild.bat
diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml
index 9d9b007b8f6..41968139816 100644
--- a/.github/workflows/test-linux.yml
+++ b/.github/workflows/test-linux.yml
@@ -29,19 +29,3 @@ jobs:
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
- name: Test
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"
-
- test-linux-with-quic:
- if: github.event.pull_request.draft == false
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v2
- with:
- python-version: ${{ env.PYTHON_VERSION }}
- - name: Environment Information
- run: npx envinfo
- - name: Build
- run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
- - name: Test
- run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml
index a476e6a08c5..462e2ea35b4 100644
--- a/.github/workflows/test-macos.yml
+++ b/.github/workflows/test-macos.yml
@@ -14,7 +14,7 @@ env:
FLAKY_TESTS: dontcare
jobs:
- test-macOS-with-quic:
+ test-macOS:
if: github.event.pull_request.draft == false
runs-on: macos-latest
steps:
@@ -26,6 +26,6 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Build
- run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
+ run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
- name: Test
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"