MIR-1361 Display ror id as of https://ror.readme.io/docs/display #2315
Workflow file for this run
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 | |
BIBUTILS_VERSION: 6.10 | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- 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: Fetch Bibutils cache | |
id: bibutils-cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/bibutils | |
key: ${{ env.BIBUTILS_VERSION }} | |
- name: Fetch Bibutils | |
if: steps.bibutils-cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir ~/bibutils | |
curl -L https://kumisystems.dl.sourceforge.net/project/bibutils/bibutils_${BIBUTILS_VERSION}_src.tgz | \ | |
tar -C ~/bibutils --strip-components=1 -xzvf- | |
cd ~/bibutils | |
./configure | |
make -j2 | |
- 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 | |
echo "${HOME}/bibutils/bin" >> $GITHUB_PATH | |
- name: Restore Maven cache | |
uses: skjolber/maven-cache-github-action@v1 | |
with: | |
step: restore | |
- name: Set current date as env variable | |
run: echo "BUILD_START=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Build | |
run: | | |
export $(dbus-launch) | |
mkdir ~/tmp | |
export TMPDIR=~/tmp | |
export FIREFOX_BIN=$(which firefox-esr) | |
export SELENIUM_BROWSER=firefox | |
mvn -B -P!standard-with-extra-repos -U -Djetty clean install | |
mvn -P!standard-with-extra-repos -B javadoc:javadoc | |
- name: Login to Docker Hub | |
if: contains('refs/heads/2022.06.x refs/heads/2023.06.x refs/heads/main', github.ref) && github.event_name=='push' && success() | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build the mir Docker images and push them | |
if: contains('refs/heads/2022.06.x refs/heads/2023.06.x refs/heads/main', github.ref) && github.event_name=='push' && success() | |
run: | | |
docker build . --file Dockerfile --tag mycoreorg/mir:${GITHUB_REF_NAME} --tag mycoreorg/mir:${GITHUB_REF_NAME}-${BUILD_START} | |
docker build mir-webapp/src/main/solr/ --file mir-webapp/src/main/solr/Dockerfile --tag mycoreorg/mir-solr:${GITHUB_REF_NAME} --tag mycoreorg/mir-solr:${GITHUB_REF_NAME}-${BUILD_START} | |
docker push mycoreorg/mir:${GITHUB_REF_NAME} | |
docker push mycoreorg/mir:${GITHUB_REF_NAME}-${BUILD_START} | |
docker push mycoreorg/mir-solr:${GITHUB_REF_NAME} | |
docker push mycoreorg/mir-solr:${GITHUB_REF_NAME}-${BUILD_START} | |
- 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 |