Skip to content

Commit f0575f6

Browse files
committed
Merge branch 'master' into kazuho/compound-packet
2 parents ff01058 + bb2fd39 commit f0575f6

9 files changed

+2453
-1160
lines changed

.circleci/config.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ jobs:
1111
# Prime caches for faster checkout
1212
- restore_cache:
1313
keys:
14-
- template
14+
- git-reference
1515
- run:
16-
name: "Update Template"
17-
command: "git -C ~/i-d-template remote update --prune"
16+
name: "Update Cache"
17+
command: "git -C ~/git-reference fetch --all --prune"
1818
- save_cache:
19-
key: template
19+
key: git-reference
2020
paths:
21-
- ~/i-d-template
21+
- ~/git-reference
2222

2323
# Build txt and html versions of drafts
2424
- restore_cache:
2525
keys:
2626
- refcache
2727
- run:
2828
name: "Build Drafts"
29-
command: "make 'CLONE_ARGS=--reference ~/i-d-template'"
29+
command: "make 'CLONE_ARGS=--reference ~/git-reference'"
3030
- save_cache:
3131
key: refcache
3232
paths:
@@ -40,15 +40,11 @@ jobs:
4040
- store_artifacts:
4141
path: /tmp/artifacts
4242

43-
# Update gh-pages and gh-issues branches
43+
# Update editor's copy on gh-pages
4444
- run:
4545
name: "Update GitHub Pages"
4646
command: "make gh-pages"
4747

48-
- run:
49-
name: "Save Issues"
50-
command: "make gh-issues || true"
51-
5248
# For tagged builds, upload to the datatracker.
5349
- deploy:
5450
name: "Upload to Datatracker"
@@ -57,6 +53,11 @@ jobs:
5753
make upload
5854
fi
5955
56+
# Save GitHub issues
57+
- run:
58+
name: "Save GitHub Issues"
59+
command: "make issues || make issues DISABLE_ISSUE_FETCH=true && make gh-issues"
60+
6061
workflows:
6162
version: 2
6263
build:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MD_PREPROCESSOR := sed -e 's/{DATE}/$(shell date '+%Y-%m')/g'
1+
MD_PREPROCESSOR := sed -e 's/{DATE}/$(shell date '+%Y-%m-%d')/g'
22

33
LIBDIR := lib
44
include $(LIBDIR)/main.mk

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ QUIC protocol suite.
2727
* [Working Group Draft](https://tools.ietf.org/html/draft-ietf-quic-http)
2828
* [Compare Working Group Draft and Editor's copy](https://tools.ietf.org/rfcdiff?url1=https://tools.ietf.org/id/draft-ietf-quic-http&url2=https://quicwg.github.io/base-drafts/draft-ietf-quic-http.txt)
2929

30+
## QPACK
31+
32+
* [Editor's copy](https://quicwg.github.io/base-drafts/draft-ietf-quic-qpack.html)
33+
* [Working Group Draft](https://tools.ietf.org/html/draft-ietf-quic-qpack)
34+
* [Compare Working Group Draft and Editor's copy](https://tools.ietf.org/rfcdiff?url1=https://tools.ietf.org/id/draft-ietf-quic-qpack&url2=https://quicwg.github.io/base-drafts/draft-ietf-quic-qpack.txt)
35+
3036
## Building the Draft
3137

3238
Formatted text and HTML versions of the draft can be built using `make`.

0 commit comments

Comments
 (0)