Skip to content

Commit ccbd1d5

Browse files
committed
build: add quic to github action
PR-URL: #34336 Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 1f94b89 commit ccbd1d5

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

.github/workflows/build-windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
FLAKY_TESTS: dontcare
1212

1313
jobs:
14-
build-windows:
14+
build-windows-with-quic:
1515
runs-on: windows-latest
1616
steps:
1717
- uses: actions/checkout@v2
@@ -24,4 +24,4 @@ jobs:
2424
- name: Environment Information
2525
run: npx envinfo
2626
- name: Build
27-
run: ./vcbuild.bat
27+
run: ./vcbuild.bat experimental-quic

.github/workflows/test-linux.yml

+15
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,18 @@ jobs:
2525
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
2626
- name: Test
2727
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots"
28+
29+
test-linux-with-quic:
30+
runs-on: ubuntu-latest
31+
steps:
32+
- uses: actions/checkout@v2
33+
- name: Set up Python ${{ env.PYTHON_VERSION }}
34+
uses: actions/setup-python@v1
35+
with:
36+
python-version: ${{ env.PYTHON_VERSION }}
37+
- name: Environment Information
38+
run: npx envinfo
39+
- name: Build
40+
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
41+
- name: Test
42+
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots"

.github/workflows/test-macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
FLAKY_TESTS: dontcare
1212

1313
jobs:
14-
test-macOS:
14+
test-macOS-with-quic:
1515
runs-on: macos-latest
1616
steps:
1717
- uses: actions/checkout@v2
@@ -22,6 +22,6 @@ jobs:
2222
- name: Environment Information
2323
run: npx envinfo
2424
- name: Build
25-
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn"
25+
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
2626
- name: Test
2727
run: make run-ci -j8 V=1 TEST_CI_ARGS="-p dots"

0 commit comments

Comments
 (0)