Skip to content

Commit 663ba7c

Browse files
committed
Expand range of versions
Signed-off-by: Viet Nguyen Duc <nguyenducviet4496@gmail.com>
1 parent 7d2bbea commit 663ba7c

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
browser-versions:
3232
description: 'List browser version to build. E.g: [130, 131]'
3333
required: true
34-
default: '[97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134]'
34+
default: '[95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134]'
3535
push-image:
3636
description: 'Push image after testing successfully'
3737
required: true
@@ -123,14 +123,21 @@ jobs:
123123
- name: Build Hub image for testing
124124
if: env.REUSE_BASE == 'false'
125125
run: make hub
126-
- name: Test images with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
126+
- name: Test images Node with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
127127
uses: nick-invision/retry@master
128128
with:
129129
timeout_minutes: 20
130130
max_attempts: 3
131131
retry_wait_seconds: 60
132132
command: |
133133
make test_chrome
134+
- name: Test images Standalone with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
135+
uses: nick-invision/retry@master
136+
with:
137+
timeout_minutes: 20
138+
max_attempts: 3
139+
retry_wait_seconds: 60
140+
command: |
134141
make test_chrome_standalone
135142
- name: Push images with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
136143
if: env.PUSH_IMAGE == 'true'

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
browser-versions:
3232
description: 'List browser version to build. E.g: [130, 131]'
3333
required: true
34-
default: '[114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133]'
34+
default: '[95, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133]'
3535
push-image:
3636
description: 'Push image after testing successfully'
3737
required: true
@@ -123,14 +123,21 @@ jobs:
123123
- name: Build Hub image for testing
124124
if: env.REUSE_BASE == 'false'
125125
run: make hub
126-
- name: Test images with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
126+
- name: Test images Node with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
127127
uses: nick-invision/retry@master
128128
with:
129129
timeout_minutes: 20
130130
max_attempts: 3
131131
retry_wait_seconds: 60
132132
command: |
133133
make test_edge
134+
- name: Test images Standalone with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
135+
uses: nick-invision/retry@master
136+
with:
137+
timeout_minutes: 20
138+
max_attempts: 3
139+
retry_wait_seconds: 60
140+
command: |
134141
make test_edge_standalone
135142
- name: Push images with Grid core ${{ env.GRID_VERSION }} and ${{ env.BROWSER_NAME }} v${{ env.BROWSER_VERSION }}
136143
if: env.PUSH_IMAGE == 'true'

tests/build-backward-compatible/browser-matrix.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,3 +166,10 @@ matrix:
166166
'97':
167167
CHROME_VERSION: google-chrome-stable=97.0.4692.99-1
168168
FIREFOX_VERSION: 97.0.2
169+
'96':
170+
CHROME_VERSION: google-chrome-stable=96.0.4664.110-1
171+
FIREFOX_VERSION: 96.0.3
172+
'95':
173+
CHROME_VERSION: google-chrome-stable=95.0.4638.69-1
174+
EDGE_VERSION: microsoft-edge-stable=95.0.1020.40-1
175+
FIREFOX_VERSION: 95.0.2

0 commit comments

Comments
 (0)