Skip to content

Commit

Permalink
WEBUI-1583: ftest pipeline failing in nuxeo-web-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Sep 24, 2024
1 parent 9c376df commit c624ecf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Install google chrome 128.0.6613.137
run: |
wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_128.0.6613.137-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_128.0.6613.137-1_amd64.deb
- name: Determine nuxeo-elements branch to link
id: pick_nuxeo_elements_branch
run: |
Expand Down Expand Up @@ -167,4 +162,4 @@ jobs:
name: packages
path: |
plugin/web-ui/marketplace/target/nuxeo-web-ui-marketplace-*.zip
plugin/itests/marketplace/target/nuxeo-web-ui-marketplace-itests-*.zip
plugin/itests/marketplace/target/nuxeo-web-ui-marketplace-itests-*.zip
2 changes: 1 addition & 1 deletion packages/nuxeo-web-ui-ftest/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ if (process.env.DRIVER_VERSION == null) {
console.log(`${version} detected.`);
const match = version && version.match(/([0-9]+)\./);
if (match) {
const checkVersion = 128; // fixed chrome version to avoid functional test breaking
const checkVersion = match[1];
try {
done = fetch(`https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_${checkVersion}`).then(
(response) => {
Expand Down

0 comments on commit c624ecf

Please sign in to comment.