@@ -64,13 +64,13 @@ jobs:
6464 fail-fast : false
6565 matrix :
6666 # Should be in sync with `update_expectations` job.
67- kind : [chromedriver, mapper ]
67+ kind : [cd, node ]
6868 head : [headless, headful]
6969 total_chunks : [6]
7070 this_chunk : [1, 2, 3, 4, 5, 6]
7171 exclude :
72- # Don't run headful mapper , as it takes too long.
73- - kind : mapper
72+ # Don't run headful node , as it takes too long.
73+ - kind : node
7474 head : headful
7575 steps :
7676 - name : Checkout
@@ -108,20 +108,20 @@ jobs:
108108 xvfb-run --auto-servernum
109109 npm run wpt -- "webdriver/tests/bidi/${{ github.event.inputs.tests }}"
110110 env :
111- CHROMEDRIVER : ${{ matrix.kind == 'chromedriver ' }}
111+ CHROMEDRIVER : ${{ matrix.kind == 'cd ' }}
112112 HEADLESS : ${{ matrix.head!='headful' }}
113113 THIS_CHUNK : ${{ matrix.this_chunk }}
114114 TOTAL_CHUNKS : ${{ matrix.total_chunks }}
115115 UPDATE_EXPECTATIONS : false
116116 VERBOSE : ${{ github.event.inputs.verbose }}
117117 WPT_REPORT : out/wptreport.${{ matrix.kind }}-${{ matrix.head }}-${{ matrix.this_chunk }}.${{ matrix.total_chunks }}.json
118118 - name : Run WPT interop tests
119- if : ${{matrix.kind == 'chromedriver '}}
119+ if : ${{matrix.kind == 'cd '}}
120120 run : >
121121 xvfb-run --auto-servernum
122122 npm run wpt -- "webdriver/tests/interop/${{ github.event.inputs.tests }}"
123123 env :
124- CHROMEDRIVER : ${{ matrix.kind == 'chromedriver ' }}
124+ CHROMEDRIVER : ${{ matrix.kind == 'cd ' }}
125125 CHROMEDRIVER_LOG_NAME : ' chromedriver-interop'
126126 THIS_CHUNK : ${{ matrix.this_chunk }}
127127 TOTAL_CHUNKS : ${{ matrix.total_chunks }}
@@ -145,11 +145,11 @@ jobs:
145145 strategy :
146146 matrix :
147147 # Should be in sync with `wpt` job.
148- kind : [chromedriver, mapper ]
148+ kind : [cd, node ]
149149 head : [headless, headful]
150150 exclude :
151- # Don't run headful mapper , as it takes too long.
152- - kind : mapper
151+ # Don't run headful node , as it takes too long.
152+ - kind : node
153153 head : headful
154154 runs-on : ubuntu-latest
155155 needs : [wpt-required]
@@ -189,7 +189,7 @@ jobs:
189189 - name : Update expectations
190190 timeout-minutes : 60
191191 env :
192- CHROMEDRIVER : ${{ matrix.kind == 'chromedriver ' }}
192+ CHROMEDRIVER : ${{ matrix.kind == 'cd ' }}
193193 HEADLESS : ${{ matrix.head!='headful' }}
194194 # Do not run tests, only update expectations.
195195 RUN_TESTS : false
@@ -202,9 +202,9 @@ jobs:
202202 -name "wptreport.${{ matrix.kind }}-${{ matrix.head }}*.json"
203203 -exec npm run wpt -- --wpt-report {} \;
204204 - name : Update interop expectations
205- if : ${{ matrix.kind == 'chromedriver ' }}
205+ if : ${{ matrix.kind == 'cd ' }}
206206 env :
207- CHROMEDRIVER : ${{ matrix.kind == 'chromedriver ' }}
207+ CHROMEDRIVER : ${{ matrix.kind == 'cd ' }}
208208 HEADLESS : ${{ matrix.head!='headful' }}
209209 # Do not run tests, only update expectations.
210210 RUN_TESTS : false
0 commit comments