Skip to content

Commit

Permalink
Upgrade ubuntu focal 20210401 (#1259) [deploy][prerelease]
Browse files Browse the repository at this point in the history
* Upgrading to focal-20210401

* Fix typo in readme

* Disabling testing Edge as dev is unstable
  • Loading branch information
diemol committed Apr 22, 2021
1 parent 69dd08b commit e8902d9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Base/Dockerfile
@@ -1,4 +1,4 @@
FROM ubuntu:focal-20201106
FROM ubuntu:focal-20210401
LABEL authors="Selenium <selenium-developers@googlegroups.com>"

#================================================
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Expand Up @@ -371,14 +371,16 @@ release: tag_major_minor
# video: this should be moved to release_latest when Selenium 4 is released

test: test_chrome \
test_edge \
test_firefox \
test_opera \
test_chrome_standalone \
test_edge_standalone \
test_firefox_standalone \
test_opera_standalone

# Disabling Edge testing for this release as Dev seems unstable
# test_edge \
# test_edge_standalone \

test_chrome:
VERSION=$(TAG_VERSION) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodeChrome
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -636,7 +636,7 @@ This project uses [noVNC](https://github.com/novnc/noVNC) to allow users inspect
their browser. This might come handy if you cannot install a VNC client on your machine. Port 7900 is used to start
noVNC, so you will need to connect to that port with your browser.

Similarly to the previous section, feel free to map port 5900 to any free external port that you wish.
Similarly to the previous section, feel free to map port 7900 to any free external port that you wish.

Here is an example with the standalone images, the same concept applies to the node images.
``` bash
Expand Down
2 changes: 1 addition & 1 deletion tests/test.py
Expand Up @@ -175,7 +175,7 @@ def launch_container(container, **kwargs):
prune_networks()
create_network("grid")
hub_id = launch_hub("grid")
ports = {'5555': 5555}
ports = {'5555': 5555, '7900': 7900}
if use_random_user_id:
test_container_id = launch_container(image, network='grid', ports=ports, user=random_user_id)
else:
Expand Down

0 comments on commit e8902d9

Please sign in to comment.