Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit 3824f3e

Browse files
committed
Upgrade Chrome patch to 57.0.2987.133
1 parent a379fa5 commit 3824f3e

File tree

6 files changed

+11
-17
lines changed

6 files changed

+11
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Note image ids also change after scm-source.json has being updated which trigger
1212
+ Upgrade Selenium minor to from 3.2.0 to 3.3.1
1313
+ Upgrade Firefox major from 51.0.1 to 52.0.2
1414
+ Upgrade GeckoDriver from 0.14.0 to 0.15.0
15+
+ Upgrade Chrome patch to 57.0.2987.133
1516
+ Chore: Grab Selenium 3 version using `--version`
1617
+ Docker push major tags: e.g. 3, 3.2, 3.2.0 and of course the specific one
1718
+ **Image tag details:**

CONTRIBUTING.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ For pull requests or local commits:
1212

1313
For repository owners only:
1414

15-
git commit -m "Upgrade Selenium minor to from 3.2.0 to 3.3.1"
16-
git tag -d latest && git tag `cat VERSION` && git push origin tmp-`cat VERSION` && git push --tags
15+
git commit -m "Upgrade Chrome patch to 57.0.2987.133"
16+
git tag -d latest; git tag -d `cat VERSION`; git push origin :`cat VERSION`; git tag `cat VERSION` && git push --force origin tmp-`cat VERSION` && git push --tags
1717

1818
-- Wait for Travis to pass OK
1919
-- Make sure changes got merged into master by elgalubot
@@ -28,17 +28,10 @@ For repository owners only:
2828
### Chrome artifact
2929
Keep certain bins if chrome version changed for example:
3030

31-
cd ~/tmp_binaries && VER="57.0.2987.110" && NAME="google-chrome-stable_${VER}_amd64" && echo ${NAME}
31+
cd ~/tmp_binaries && VER="57.0.2987.133" && NAME="google-chrome-stable_${VER}_amd64" && echo ${NAME}
3232
wget -nv --show-progress -O ${NAME}.deb "https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"
3333
md5sum ${NAME}.deb > ${NAME}.md5 && shasum ${NAME}.deb > ${NAME}.sha && cp ${NAME}.md5 ${NAME}.sha ~/dosel/binaries
3434

35-
## Retry
36-
Failed in Travis? retry
37-
38-
git tag -d `cat VERSION` && git push origin :`cat VERSION`
39-
#git add ...
40-
git commit --amend && git tag `cat VERSION` && git push --force origin tmp-`cat VERSION` && git push --tags
41-
4235
## Docker push from Travis CI
4336
Travis [steps](https://docs.travis-ci.com/user/docker/#Pushing-a-Docker-Image-to-a-Registry) involve `docker login` and docker credentials encryptions.
4437

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -587,14 +587,14 @@ RUN wget --no-verbose -O geckodriver.tar.gz \
587587
#===============
588588
# TODO: Use Google fingerprint to verify downloads
589589
# https://www.google.de/linuxrepositories/
590-
ENV CHROME_VERSION_TRIGGER="57.0.2987.110" \
590+
ENV CHROME_VERSION_TRIGGER="57.0.2987.133" \
591591
CHROME_URL="https://dl.google.com/linux/direct" \
592592
CHROME_BASE_DEB_PATH="/home/seluser/chrome-deb/google-chrome" \
593593
GREP_ONLY_NUMS_VER="[0-9.]{2,20}"
594594

595-
LABEL selenium2_chrome_version "57.0.2987.110"
596-
LABEL selenium3_chrome_version "57.0.2987.110"
597-
LABEL selenium_chrome_version "57.0.2987.110"
595+
LABEL selenium2_chrome_version "57.0.2987.133"
596+
LABEL selenium3_chrome_version "57.0.2987.133"
597+
LABEL selenium_chrome_version "57.0.2987.133"
598598

599599
# Layer size: huge: 196.3 MB
600600
RUN apt-get -qqy update \

capabilities.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"caps": [
33
{
44
"BROWSER_NAME": "chrome",
5-
"VERSION": "57.0.2987.110",
5+
"VERSION": "57.0.2987.133",
66
"PLATFORM": "LINUX"
77
},
88
{

capabilities2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"caps": [
33
{
44
"BROWSER_NAME": "chrome",
5-
"VERSION": "57.0.2987.110",
5+
"VERSION": "57.0.2987.133",
66
"PLATFORM": "LINUX"
77
},
88
{

capabilities3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"caps": [
33
{
44
"BROWSER_NAME": "chrome",
5-
"VERSION": "57.0.2987.110",
5+
"VERSION": "57.0.2987.133",
66
"PLATFORM": "LINUX"
77
},
88
{

0 commit comments

Comments
 (0)