-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #441 from ppodgorsek/issue-430
Issue #430 - Fix failing CI pipeline
- Loading branch information
Showing
3 changed files
with
15 additions
and
199 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM fedora:36 | ||
FROM fedora:39 | ||
|
||
MAINTAINER Paul Podgorsek <[email protected]> | ||
LABEL description Robot Framework in Docker. | ||
|
@@ -30,21 +30,21 @@ ENV ROBOT_GID 1000 | |
|
||
# Dependency versions | ||
ENV ALPINE_GLIBC 2.35-r0 | ||
ENV AWS_CLI_VERSION 1.25.81 | ||
ENV AWS_CLI_VERSION 1.27.157 | ||
ENV AXE_SELENIUM_LIBRARY_VERSION 2.1.6 | ||
ENV BROWSER_LIBRARY_VERSION 14.0.0 | ||
ENV CHROMIUM_VERSION 103.0 | ||
ENV BROWSER_LIBRARY_VERSION 16.2.0 | ||
ENV CHROMIUM_VERSION 114.0 | ||
ENV DATABASE_LIBRARY_VERSION 1.2.4 | ||
ENV DATADRIVER_VERSION 1.6.0 | ||
ENV DATADRIVER_VERSION 1.8.1 | ||
ENV DATETIMETZ_VERSION 1.0.6 | ||
ENV FAKER_VERSION 5.0.0 | ||
ENV FIREFOX_VERSION 104.0 | ||
ENV FIREFOX_VERSION 114.0 | ||
ENV FTP_LIBRARY_VERSION 1.9 | ||
ENV GECKO_DRIVER_VERSION v0.30.0 | ||
ENV IMAP_LIBRARY_VERSION 0.4.5 | ||
ENV PABOT_VERSION 2.15.0 | ||
ENV REQUESTS_VERSION 0.9.3 | ||
ENV ROBOT_FRAMEWORK_VERSION 6.0.2 | ||
ENV GECKO_DRIVER_VERSION v0.33.0 | ||
ENV IMAP_LIBRARY_VERSION 0.4.6 | ||
ENV PABOT_VERSION 2.16.0 | ||
ENV REQUESTS_VERSION 0.9.5 | ||
ENV ROBOT_FRAMEWORK_VERSION 6.1 | ||
ENV SELENIUM_LIBRARY_VERSION 6.1.0 | ||
ENV SSH_LIBRARY_VERSION 3.8.0 | ||
ENV XVFB_VERSION 1.20 | ||
|
@@ -93,7 +93,10 @@ RUN pip3 install \ | |
axe-selenium-python==$AXE_SELENIUM_LIBRARY_VERSION \ | ||
PyYAML \ | ||
# Install awscli to be able to upload test reports to AWS S3 | ||
awscli==$AWS_CLI_VERSION | ||
awscli==$AWS_CLI_VERSION \ | ||
# Install an older Selenium version to avoid issues when running tests | ||
# https://github.com/robotframework/SeleniumLibrary/issues/1835 | ||
selenium==4.9.0 | ||
|
||
# Gecko drivers | ||
RUN dnf install -y \ | ||
|
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