Skip to content

Commit ba7a4e2

Browse files
committed
[ci] Fix workflow to deploy backward browser versions
Signed-off-by: Viet Nguyen Duc <nguyenducviet4496@gmail.com>
1 parent ca68541 commit ba7a4e2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release-edge-versions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ jobs:
121121
command: |
122122
make update_browser_versions_matrix
123123
./tests/build-backward-compatible/bootstrap.sh ${GRID_VERSION} ${BROWSER_VERSION} ${BROWSER_NAME} ${REUSE_BASE}
124+
EXIT_CODE=$?
124125
cat .env | xargs -I {} echo {} >> $GITHUB_ENV
126+
exit $EXIT_CODE
125127
- name: Build Hub image for testing
126128
if: env.REUSE_BASE == 'false'
127129
run: make hub

.github/workflows/release-firefox-versions.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
timeout_minutes: 10
7979
max_attempts: 3
8080
command: |
81-
INSTALL_DOCKER=false make setup_dev_env
81+
INSTALL_DOCKER=true make setup_dev_env
8282
- name: Output Docker info
8383
run: docker info
8484
- name: Set Selenium base version
@@ -121,7 +121,9 @@ jobs:
121121
command: |
122122
make update_browser_versions_matrix
123123
./tests/build-backward-compatible/bootstrap.sh ${GRID_VERSION} ${BROWSER_VERSION} ${BROWSER_NAME} ${REUSE_BASE}
124+
EXIT_CODE=$?
124125
cat .env | xargs -I {} echo {} >> $GITHUB_ENV
126+
exit $EXIT_CODE
125127
- name: Build Hub image for testing
126128
if: env.REUSE_BASE == 'false'
127129
run: make hub

0 commit comments

Comments
 (0)