Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
build: add quic to github action
PR-URL: #34336
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
gengjiawen committed Jul 28, 2020
1 parent 1f94b89 commit ccbd1d5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Expand Up @@ -11,7 +11,7 @@ env:
FLAKY_TESTS: dontcare

jobs:
build-windows:
build-windows-with-quic:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -24,4 +24,4 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Build
run: ./vcbuild.bat
run: ./vcbuild.bat experimental-quic
15 changes: 15 additions & 0 deletions .github/workflows/test-linux.yml
Expand Up @@ -25,3 +25,18 @@ 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 dots"

test-linux-with-quic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v1
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 dots"
4 changes: 2 additions & 2 deletions .github/workflows/test-macos.yml
Expand Up @@ -11,7 +11,7 @@ env:
FLAKY_TESTS: dontcare

jobs:
test-macOS:
test-macOS-with-quic:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -22,6 +22,6 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Build
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn"
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
- name: Test
run: make run-ci -j8 V=1 TEST_CI_ARGS="-p dots"

0 comments on commit ccbd1d5

Please sign in to comment.