MCR-3302 fixed spelling #8374
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
name: test | |
on: [ push, pull_request ] | |
env: | |
MAVEN_OPTS: -Xmx1024M -Xss128M | |
GECKODRIVER_VERSION: 0.27.0 | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Fetch Geckodriver cache | |
id: geckodriver-cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/geckodriver | |
key: ${{ env.GECKODRIVER_VERSION }} | |
- name: Fetch Geckodriver | |
if: steps.geckodriver-cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir ~/geckodriver | |
curl -L https://github.com/mozilla/geckodriver/releases/download/v${GECKODRIVER_VERSION}/geckodriver-v${GECKODRIVER_VERSION}-linux64.tar.gz | \ | |
tar -C ~/geckodriver/ -xzvf- | |
- name: Set up test dependencies | |
run: | | |
# PPA by Mozilla for ESR releases | |
# replace 'sudo add-apt-repository ppa:mozillateam/ppa' with simple commands as workaround for https://github.com/orgs/community/discussions/69720 | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0AB215679C571D1C8325275B9BDB3D89CE49EC21 | |
sudo add-apt-repository "deb https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu/ focal main" | |
sudo apt update | |
sudo apt install firefox-esr chromium-browser chromium-chromedriver dbus-x11 | |
# Selenium wants to run non-ESR FF | |
sudo rm -rf /usr/lib/firefox/ | |
sudo ln -s firefox-esr /usr/lib/firefox | |
sudo ln -s firefox-esr /usr/lib/firefox/firefox | |
firefox --version | |
~/geckodriver/geckodriver --version | |
echo "${HOME}/geckodriver" >> $GITHUB_PATH | |
- name: Restore Maven cache | |
uses: skjolber/maven-cache-github-action@v1 | |
with: | |
step: restore | |
- name: Build | |
run: | | |
export $(dbus-launch) | |
mkdir ~/tmp | |
export TMPDIR=~/tmp | |
export FIREFOX_BIN=$(which firefox-esr) | |
export SELENIUM_BROWSER=firefox | |
mvn -B -Plocal-testing,!standard-with-extra-repos clean install -Dlog4j.configurationFile=$PWD/ci/log4j2.xml -T2 | |
mvn -P!standard-with-extra-repos -B javadoc:javadoc | |
- name: Upload logs on build failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: | | |
./**/surefire-reports | |
./**/failsafe-reports | |
./**/screenshots | |
./**/*error*.log | |
./**/*test.log | |
- name: Save Maven cache | |
uses: skjolber/maven-cache-github-action@v1 | |
with: | |
step: save |