forked from xspec/xspec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
45 lines (39 loc) · 1.04 KB
/
azure-pipelines.yml
File metadata and controls
45 lines (39 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
trigger:
branches:
exclude:
- 'dependabot/*'
tags:
exclude:
- '*'
jobs:
- template: test/ci/azure-pipelines_windows.yml
parameters:
jobName: Win_Java17
javaVersion: 17
testOxygen: false
- template: test/ci/azure-pipelines_windows.yml
parameters:
jobName: Win_Java21
javaVersion: 21
- job: macOS
pool:
vmImage: macOS-latest
variables:
# Non-mainstream jobs are not included in favor of GitHub Actions
XSPEC_TEST_ENV: saxon-12
steps:
- task: JavaToolInstaller@0
inputs:
versionSpec: '17'
jdkArchitectureOption: 'x64'
jdkSourceOption: 'PreInstalled'
- script: >
source test/ci/npm-ci.sh
&& source test/ci/install-deps.sh
&& test/ci/print-env.sh
&& test/ci/run-core-tests.sh
&& test/ci/maven-package.sh -q
&& test/ci/compile-java.sh -silent
&& test/ci/last-git-status.sh
&& test/ci/test-maven-jar.sh -silent
displayName: Test