Fix bugs on multi stream and do optimization on quic stream. #3231
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: darwin | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build | |
runs-on: [ macos-latest ] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Install ninja | |
run: brew install ninja | |
- name: Configure | |
run: mkdir build && cd build && cmake -G Ninja .. | |
- name: build | |
run: cd build && ninja | |
- name: Test | |
run: cd build && ctest --output-on-failure |