-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test CI pipeline with downgrade chrome version
- Loading branch information
1 parent
ee86352
commit 0efa193
Showing
7 changed files
with
65 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: 'Install Google Chrome' | ||
description: 'Install Google Chrome' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install google chrome | ||
shell: bash | ||
run: | | ||
wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.133-1_amd64.deb | ||
sudo apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.133-1_amd64.deb | ||
sudo ln -s /usr/bin/google-chrome /usr/bin/chrome | ||
chrome --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,34 +22,26 @@ jobs: | |
with: | ||
branch: maintenance-3.0.x | ||
|
||
#================================================================================================================== | ||
# this line of code has been commented on due to some driver issues, we will resume it once WEBUI-1266 is resolved. | ||
#================================================================================================================== | ||
# a11y: | ||
# uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
# secrets: | ||
# NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
# PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
# PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
# with: | ||
# branch: maintenance-3.1.x | ||
#================================================================================================================== | ||
|
||
#================================================================================================================== | ||
# this line of code has been commented on due to some driver issues, we will resume it once WEBUI-1267 is resolved. | ||
#================================================================================================================== | ||
# ftest: | ||
# uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
# secrets: | ||
# NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
# PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
# PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
# with: | ||
# branch: maintenance-3.0.x | ||
#================================================================================================================== | ||
a11y: | ||
uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
secrets: | ||
NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
with: | ||
branch: maintenance-3.1.x | ||
|
||
ftest: | ||
uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
secrets: | ||
NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
with: | ||
branch: maintenance-3.0.x | ||
|
||
build: | ||
needs: [ lint, test ] | ||
needs: [ lint, test, a11y, ftest ] | ||
runs-on: [ self-hosted, master ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters