File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -218,15 +218,16 @@ jobs:
218218 REQUEST_TIMEOUT : ${{ github.event.inputs.request-timeout || '400' }}
219219 - name : Set environment variables
220220 run : |
221- TEST_FIREFOX_INSTALL_LANG_PACKAGE=${{ matrix.firefox-install-lang-package || '' }}
222221 if [ -n "${TEST_FIREFOX_INSTALL_LANG_PACKAGE}" ]; then
223222 echo "TEST_FIREFOX_INSTALL_LANG_PACKAGE=${TEST_FIREFOX_INSTALL_LANG_PACKAGE}" >> $GITHUB_ENV
224223 fi
225- SELENIUM_ENABLE_MANAGED_DOWNLOADS=${{ matrix.enable-managed-downloads || '' }}
226224 if [ -n "${SELENIUM_ENABLE_MANAGED_DOWNLOADS}" ]; then
227225 echo "SELENIUM_ENABLE_MANAGED_DOWNLOADS=${SELENIUM_ENABLE_MANAGED_DOWNLOADS}" >> $GITHUB_ENV
228226 fi
229- - name : Run Docker Compose to ${{ matrix.test-strategy }} on ${{ matrix.os }}
227+ env :
228+ TEST_FIREFOX_INSTALL_LANG_PACKAGE : ${{ matrix.firefox-install-lang-package || '' }}
229+ SELENIUM_ENABLE_MANAGED_DOWNLOADS : ${{ matrix.enable-managed-downloads || '' }}
230+ - name : Run Docker Compose to ${{ matrix.test-strategy }} on AMD64
230231 if : contains(matrix.os, 'arm') == false
231232 uses : nick-invision/retry@master
232233 with :
@@ -235,7 +236,7 @@ jobs:
235236 retry_wait_seconds : 60
236237 command : |
237238 USE_RANDOM_USER_ID=${{ matrix.use-random-user }} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make ${{ matrix.test-strategy }}
238- - name : Run Docker Compose to ${{ matrix.test-strategy }} on ${{ matrix.os }}
239+ - name : Run Docker Compose to ${{ matrix.test-strategy }} on ARM64
239240 if : contains(matrix.os, 'arm') == true
240241 uses : nick-invision/retry@master
241242 with :
You can’t perform that action at this time.
0 commit comments