Skip to content

Commit ea53f67

Browse files
run quic-go and quant interop for PRs
1 parent 766d196 commit ea53f67

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/interop.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: interop
22
on:
33
schedule:
44
- cron: "0 */8 * * *" # every 8h
5+
pull_request:
6+
branches:
7+
- master
58

69
# Cache key for caching the Wireshark build.
710
# To trigger a rebuild of Wireshark increment this value.
@@ -87,8 +90,14 @@ jobs:
8790
echo "::set-output name=clients::$CLIENTS"
8891
- name: Determine Docker images
8992
id: set-images
93+
env:
94+
EVENT_NAME: ${{ github.event_name }}
9095
run: |
91-
IMAGES=$(jq -c 'keys_unsorted' implementations.json)
96+
if [[ "$EVENT_NAME"=="pull_request" ]]; then
97+
IMAGES="['quic-go','quant']"
98+
else
99+
IMAGES=$(jq -c 'keys_unsorted' implementations.json)
100+
fi
92101
echo $IMAGES
93102
echo "::set-output name=images::$IMAGES"
94103
docker-pull-tools:

0 commit comments

Comments
 (0)