From 43ff254be86627d605a77c2efe9c488c6ee12b84 Mon Sep 17 00:00:00 2001 From: AirQuick Date: Thu, 30 Nov 2023 17:08:31 +0900 Subject: [PATCH] ci: default Saxon 12 --- appveyor.yml | 2 +- azure-pipelines.yml | 2 +- test/ci/set-env.cmd | 2 +- test/ci/set-env.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 77b0119d3..1377b28ac 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,7 +9,7 @@ skip_branch_with_pr: true environment: matrix: # Non-mainstream jobs are not included in favor of GitHub Actions and Azure Pipelines - - XSPEC_TEST_ENV: saxon-10 + - XSPEC_TEST_ENV: saxon-12 install: - cmd: test\ci\install-deps.cmd diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6cb3bdf2d..e7d5a4b9f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,7 @@ jobs: variables: # Non-mainstream jobs are not included in favor of GitHub Actions - XSPEC_TEST_ENV: saxon-10 + XSPEC_TEST_ENV: saxon-12 steps: - script: > diff --git a/test/ci/set-env.cmd b/test/ci/set-env.cmd index 724fd3dab..1f3141837 100644 --- a/test/ci/set-env.cmd +++ b/test/ci/set-env.cmd @@ -1,7 +1,7 @@ rem rem Select the mainstream by default rem -if not defined XSPEC_TEST_ENV set XSPEC_TEST_ENV=saxon-10 +if not defined XSPEC_TEST_ENV set XSPEC_TEST_ENV=saxon-12 echo Setting up %XSPEC_TEST_ENV% rem diff --git a/test/ci/set-env.sh b/test/ci/set-env.sh index 8ced2fcaa..a6c42b323 100644 --- a/test/ci/set-env.sh +++ b/test/ci/set-env.sh @@ -8,7 +8,7 @@ # Select the mainstream by default # if [ -z "${XSPEC_TEST_ENV}" ]; then - export XSPEC_TEST_ENV=saxon-10 + export XSPEC_TEST_ENV=saxon-12 fi echo "Setting up ${XSPEC_TEST_ENV}"