File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: interop
2
2
on :
3
3
schedule :
4
4
- cron : " 0 */8 * * *" # every 8h
5
+ pull_request :
6
+ branches :
7
+ - master
5
8
6
9
# Cache key for caching the Wireshark build.
7
10
# To trigger a rebuild of Wireshark increment this value.
87
90
echo "::set-output name=clients::$CLIENTS"
88
91
- name : Determine Docker images
89
92
id : set-images
93
+ env :
94
+ EVENT_NAME : ${{ github.event_name }}
90
95
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
92
101
echo $IMAGES
93
102
echo "::set-output name=images::$IMAGES"
94
103
docker-pull-tools :
@@ -143,6 +152,7 @@ jobs:
143
152
path : ${{ matrix.image }}.tar.gz
144
153
if-no-files-found : error
145
154
tests :
155
+ if : ${{ github.event_name != 'pull_request' }}
146
156
needs : [ wireshark, config, docker-pull-tools, docker-pull-images ]
147
157
runs-on : ubuntu-latest
148
158
continue-on-error : true
@@ -230,6 +240,7 @@ jobs:
230
240
${{ matrix.server }}_${{ matrix.client }}_results.json
231
241
${{ matrix.server }}_${{ matrix.client }}_measurements.json
232
242
aggregate :
243
+ if : ${{ github.event_name != 'pull_request' }}
233
244
needs : [ config, tests ]
234
245
runs-on : ubuntu-latest
235
246
env :
You can’t perform that action at this time.
0 commit comments