Skip to content

Commit 3ede74e

Browse files
committed
[ci] Update for workflow deploy node browser versions
[skip ci] Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent d19b54f commit 3ede74e

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
runs-on: ubuntu-24.04
6161
permissions: write-all
6262
strategy:
63-
max-parallel: 1
6463
fail-fast: false
6564
matrix:
6665
browser-version: ${{ fromJSON(github.event.inputs.browser-versions)}}
@@ -163,6 +162,10 @@ jobs:
163162
GRID_VERSION: ${{ needs.deploy.outputs.GRID_VERSION }}
164163
- name: Create CHANGELOG directory
165164
run: mkdir -p ./CHANGELOG/${{ env.GRID_VERSION }}
165+
- name: Fetch latest version
166+
run: |
167+
python3 -m pip install -r tests/requirements.txt
168+
python3 tests/build-backward-compatible/fetch_version.py
166169
- name: Download results
167170
uses: actions/download-artifact@v4
168171
with:

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
runs-on: ubuntu-24.04
6161
permissions: write-all
6262
strategy:
63-
max-parallel: 1
6463
fail-fast: false
6564
matrix:
6665
browser-version: ${{ fromJSON(github.event.inputs.browser-versions)}}
@@ -163,6 +162,10 @@ jobs:
163162
GRID_VERSION: ${{ needs.deploy.outputs.GRID_VERSION }}
164163
- name: Create CHANGELOG directory
165164
run: mkdir -p ./CHANGELOG/${{ env.GRID_VERSION }}
165+
- name: Fetch latest version
166+
run: |
167+
python3 -m pip install -r tests/requirements.txt
168+
python3 tests/build-backward-compatible/fetch_version.py
166169
- name: Download results
167170
uses: actions/download-artifact@v4
168171
with:

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
runs-on: ubuntu-24.04
6161
permissions: write-all
6262
strategy:
63-
max-parallel: 1
6463
fail-fast: false
6564
matrix:
6665
browser-version: ${{ fromJSON(github.event.inputs.browser-versions)}}
@@ -163,6 +162,10 @@ jobs:
163162
GRID_VERSION: ${{ needs.deploy.outputs.GRID_VERSION }}
164163
- name: Create CHANGELOG directory
165164
run: mkdir -p ./CHANGELOG/${{ env.GRID_VERSION }}
165+
- name: Fetch latest version
166+
run: |
167+
python3 -m pip install -r tests/requirements.txt
168+
python3 tests/build-backward-compatible/fetch_version.py
166169
- name: Download results
167170
uses: actions/download-artifact@v4
168171
with:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ matrix:
99
FIREFOX_DOWNLOAD_URL: https://download-installer.cdn.mozilla.net/pub/firefox/nightly/2024/11/2024-11-25-09-40-45-mozilla-central/firefox-134.0a1.en-US.linux-aarch64.deb
1010
FIREFOX_PLATFORMS: linux/amd64,linux/arm64
1111
'133':
12-
EDGE_VERSION: microsoft-edge-stable=133.0.3065.82-1
13-
CHROME_VERSION: google-chrome-stable=133.0.6943.126-1
12+
EDGE_VERSION: microsoft-edge-stable=133.0.3065.92-1
13+
CHROME_VERSION: google-chrome-stable=133.0.6943.141-1
1414
FIREFOX_VERSION: 133.0.3
1515
FIREFOX_DOWNLOAD_URL: https://download-installer.cdn.mozilla.net/pub/firefox/nightly/2024/10/2024-10-28-09-56-35-mozilla-central/firefox-133.0a1.en-US.linux-aarch64.deb
1616
FIREFOX_PLATFORMS: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)