Skip to content

Commit

Permalink
feat: #64 added support for mp-quic-go backend
Browse files Browse the repository at this point in the history
  • Loading branch information
parvit committed Dec 1, 2024
1 parent 8c318b3 commit d1fa807
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
id: check_file_changed
run: |
echo ">> Differing source files list ${SRC_PATTERN} <<"
SRC_DIFF=$(git diff HEAD^ HEAD --name-only | { grep -E "${SRC_PATTERN}" || true; } | wc -l)
git diff HEAD^ HEAD --name-only | { grep -E "${SRC_PATTERN}" || true; }
SRC_DIFF=$(git diff @~1 --name-only | { grep -E "${SRC_PATTERN}" || true; } | wc -l)
git diff @~1 --name-only | { grep -E "${SRC_PATTERN}" || true; }
echo "---------------------------------"
if [[ "${SRC_DIFF}" -gt "0" ]]; then
echo ">> Found differing source files, executing integration workflow"
Expand Down
2 changes: 1 addition & 1 deletion backend/backend_quicgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"time"
)

// temp
//

const (
QUICGO_BACKEND = "quic-go"
Expand Down

0 comments on commit d1fa807

Please sign in to comment.