From 21ad864feecf7bc6f3fe5fc828e6dc3f0e6982b5 Mon Sep 17 00:00:00 2001 From: rahuljain-dev Date: Mon, 11 Sep 2023 13:07:32 +0530 Subject: [PATCH] install chrome 114 ftest and a11y --- .github/workflows/a11y.yaml | 11 ++++++----- .github/workflows/ftest.yaml | 13 ++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/a11y.yaml b/.github/workflows/a11y.yaml index f7063aca1b..6e85292957 100644 --- a/.github/workflows/a11y.yaml +++ b/.github/workflows/a11y.yaml @@ -47,11 +47,12 @@ jobs: with: distribution: 'zulu' java-version: '11' - - name: Install google chrome - run: | - wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.90-1_amd64.deb - apt install ./google-chrome-stable_114.0.5735.90-1_amd64.deb - chrome --version + + - name: Install google chrome + run: | + wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.90-1_amd64.deb + apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb + chrome --version - name: 'Update settings.xml with server configuration' run: | diff --git a/.github/workflows/ftest.yaml b/.github/workflows/ftest.yaml index 6a13aceb84..9e529993b4 100644 --- a/.github/workflows/ftest.yaml +++ b/.github/workflows/ftest.yaml @@ -18,7 +18,7 @@ on: PACKAGES_AUTH_USER: description: 'PACKAGES_AUTH_USER' required: true - PACKAGES_AUTH_TOKEN: + PACKAGES_AUTH_TOKEN: description: 'PACKAGES_AUTH_TOKEN' required: true @@ -29,7 +29,7 @@ env: jobs: ftests: - runs-on: [ self-hosted, master ] + runs-on: [self-hosted, master] steps: - uses: actions/checkout@v2 with: @@ -41,16 +41,15 @@ jobs: scope: '@nuxeo' - uses: actions/setup-java@v2 - with: + with: distribution: 'zulu' java-version: '11' - name: Install google chrome run: | - wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.90-1_amd64.deb - apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb - ln -s /usr/bin/google-chrome /usr/bin/chrome -f - chrome --version + wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.90-1_amd64.deb + apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb + chrome --version - name: Determine nuxeo-elements branch to link id: pick_nuxeo_elements_branch