added "send via Thunderbird" button to eMailDialog #52
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
# This is a basic workflow to help you get started with Actions | |
name: Pull Request validation | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
# push: | |
# branches: [ master ] | |
pull_request: | |
types: [opened, reopened, edited] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '17' # The JDK version to make available on the path. | |
java-package: jdk+fx # (jre, jdk, or jdk+fx) - defaults to jdk | |
architecture: x64 # (x64 or x86) - defaults to x64 | |
- name: Prepare environment | |
run: | | |
sudo systemctl start mysql | |
mkdir /home/runner/j-lawyer-backup | |
mkdir /home/runner/j-lawyer-data | |
mkdir /home/runner/j-lawyer-data/archivefiles | |
mkdir /home/runner/j-lawyer-data/emailtemplates | |
mkdir /home/runner/j-lawyer-data/templates | |
mkdir /home/runner/j-lawyer-data/mastertemplates | |
mysql -uroot -h127.0.0.1 -proot -e 'CREATE DATABASE IF NOT EXISTS jlawyerdb;' | |
sudo apt-get update | |
sudo apt-get install wget tar ant ant-optional junit4 | |
sudo apt-get install openjfx | |
wget -O /home/runner/j-lawyer-backup/backups.tar.gz https://www.j-lawyer.org/downloads/travisci/backups/backups.tar.gz | |
tar -m -xvzf /home/runner/j-lawyer-backup/backups.tar.gz -C /home/runner/j-lawyer-backup | |
- name: Set up JDK17 | |
uses: AdoptOpenJDK/install-jdk@v1 | |
with: | |
version: '17' | |
architecture: x64 | |
- name: Build server with JDK17 | |
# ejb tests fail for some reason... | |
# run: ant -buildfile j-lawyer-fax/build.xml default && ant -buildfile j-lawyer-server-common/build.xml default && ant -Dj2ee.server.home=/home/travis -buildfile j-lawyer-server-entities/build.xml default && ant -buildfile j-lawyer-server-api/build.xml default && ant -Dj2ee.server.home=/home/travis -buildfile j-lawyer-server/build.xml default test && ant -buildfile j-lawyer-io-common/build.xml default | |
# run j-lawyer-fax without tests, does not need to access the real account | |
run: ant -buildfile j-lawyer-fax/build.xml jar javadoc && ant -buildfile j-lawyer-server-common/build.xml jar javadoc && ant -Dj2ee.server.home=/home/travis -buildfile j-lawyer-server-entities/build.xml default && ant -buildfile j-lawyer-server-api/build.xml default && ant -Dj2ee.server.home=/home/travis -buildfile j-lawyer-server/build.xml default && ant -buildfile j-lawyer-io-common/build.xml default | |
# removed temporarily: && mvn -f j-lawyer-backupmgr/pom.xml clean package test | |
env: | |
ftpuser: ${{ secrets.FTPUSER }} | |
ftppassword: ${{ secrets.FTPPASSWORD }} | |
ftphost: ${{ secrets.FTPHOST }} | |
ftphome: ${{ secrets.FTPHOME }} | |
sipuser: ${{ secrets.SIPUSER }} | |
sippassword: ${{ secrets.SIPPASSWORD }} | |
runsontravisci: ${{ secrets.RUNSONTRAVISCI }} | |
mysqlpwd: root | |
backupdirectory: /home/runner/j-lawyer-backup | |
datadirectory: /home/runner/j-lawyer-data | |
encryptionpwd: | |
- name: Set up JDK17 | |
uses: AdoptOpenJDK/install-jdk@v1 | |
with: | |
version: '17' | |
architecture: x64 | |
targets: 'JDK_17' | |
- name: populate JAVA_HOME to Java 17 | |
run: echo "JAVA_HOME=$(echo $JDK_17)" >> $GITHUB_ENV | |
- name: Build client with JDK17 | |
run: ant -buildfile j-lawyer-client/build.xml default | |
# removed temporarily: && mvn -f j-lawyer-backupmgr/pom.xml clean package test | |
env: | |
ftpuser: ${{ secrets.FTPUSER }} | |
ftppassword: ${{ secrets.FTPPASSWORD }} | |
ftphost: ${{ secrets.FTPHOST }} | |
ftphome: ${{ secrets.FTPHOME }} | |
sipuser: ${{ secrets.SIPUSER }} | |
sippassword: ${{ secrets.SIPPASSWORD }} | |
runsontravisci: ${{ secrets.RUNSONTRAVISCI }} | |
mysqlpwd: root | |
backupdirectory: /home/runner/j-lawyer-backup | |
datadirectory: /home/runner/j-lawyer-data | |
encryptionpwd: | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
with: | |
args: > | |
-Dsonar.organization=jlawyerorg | |
-Dsonar.projectKey=jlawyerorg_j-lawyer-org | |
-Dsonar.projectName=j-lawyer-org | |
-Dsonar.projectVersion=2.6.0 | |
-Dsonar.java.binaries=. | |
-Dsonar.java.source=11 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
JAVA_HOME: '' # Avoid 'java: not found' error | |