We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd99463 commit e15c3cdCopy full SHA for e15c3cd
azure-pipelines.yml
@@ -15,7 +15,11 @@ jobs:
15
ls -al
16
env | sort
17
displayName: show environment
18
- - bash: pwd && ls && bash ./configure --with-jtreg=/usr/share/jtreg --disable-warnings-as-errors
+ - bash: |
19
+ wget https://builds.shipilev.net/jtreg/jtreg-7.5%2B1.zip -O /tmp/jtreg.zip
20
+ unzip /tmp/jtreg.zip -d /tmp/
21
+ displayName: Install jtreg7
22
+ - bash: pwd && ls && bash ./configure --with-jtreg=/tmp/jtreg --disable-warnings-as-errors
23
displayName: configure
24
- bash: make jdk
25
timeoutInMinutes: 90
0 commit comments