Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy GitHub Artifacts #43

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
ea82b89
add install OpenJFX step
RobertBColton Oct 29, 2020
9270db0
install specifically version 8 of OpenJFX
RobertBColton Oct 29, 2020
1fb4c6f
try wildcard
RobertBColton Oct 29, 2020
c9023c6
try Oracle JDK 8
RobertBColton Oct 30, 2020
466e22e
dont add repository
RobertBColton Oct 30, 2020
e4af6a7
try Oracle JDK 10 for Ubuntu 18
RobertBColton Oct 30, 2020
c9e3444
add repository
RobertBColton Oct 30, 2020
97e13f8
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
6ef3013
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
e06dd48
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
edcee6e
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
9ab7766
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
40de229
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
673aac2
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
acec6f5
Update pom.xml
RobertBColton Oct 30, 2020
fa60826
Update pom.xml
RobertBColton Oct 30, 2020
e3b064e
Update pom.xml
RobertBColton Oct 30, 2020
54be29d
Update pom.xml
RobertBColton Oct 30, 2020
21805f2
Update pom.xml
RobertBColton Oct 30, 2020
3114b3d
Update pom.xml
RobertBColton Oct 30, 2020
957cdee
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
0c15786
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
7d07435
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
8743c82
Update pom.xml
RobertBColton Oct 30, 2020
3534452
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
9662a2b
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
a91427c
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
f45eae6
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
975bc7a
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
87fb324
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
00059b7
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
d242c0e
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
6036354
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
8c325bb
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
6c20052
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
1015994
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
831c136
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
e52e707
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
4d77f7e
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
50c21f1
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
b77c8f3
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
cf55405
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
5534aa1
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
3d4bd4f
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
b950a5a
Update azure-pipelines.yml
RobertBColton Oct 30, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@ trigger:
- master

pool:
vmImage: 'ubuntu-latest'
vmImage: 'ubuntu-16.04'

steps:
- script: |
sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-11-jdk
sudo apt install openjfx
sudo update-alternatives --set java /usr/lib/jvm/java-11-openjdk-amd64/bin/java
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkVersionOption: '1.11'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
Expand Down