From ba5ca8c4fc0e0024637a3d94925aef60ae215776 Mon Sep 17 00:00:00 2001 From: Philip Top Date: Fri, 28 Jan 2022 06:49:20 -0800 Subject: [PATCH] remove the symbolic link in the meson test (#697) * remove the symbolic link in the meson test * update python version in meson test * remove directory from git and add directory creation into azure scripts * remove the generated symlink * Update azure-pipelines.yml Co-authored-by: Henry Schreiner Co-authored-by: Henry Schreiner --- azure-pipelines.yml | 7 ++++++- tests/mesonTest/subprojects/CLI11 | 1 - 2 files changed, 6 insertions(+), 2 deletions(-) delete mode 120000 tests/mesonTest/subprojects/CLI11 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e0543f3a..1b92dd19 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -82,8 +82,13 @@ jobs: steps: - task: UsePythonVersion@0 inputs: - versionSpec: '3.6' + versionSpec: '3.7' - script: python3 -m pip install meson ninja + displayName: install meson + - script: mkdir tests/mesonTest/subprojects + displayName: generate test directories + - script: ln -s "$(pwd)" tests/mesonTest/subprojects/CLI11 + displayName: generate CLI11 symlink - script: meson build displayName: Run meson to generate build workingDirectory: tests/mesonTest diff --git a/tests/mesonTest/subprojects/CLI11 b/tests/mesonTest/subprojects/CLI11 deleted file mode 120000 index a8a4f8c2..00000000 --- a/tests/mesonTest/subprojects/CLI11 +++ /dev/null @@ -1 +0,0 @@ -../../.. \ No newline at end of file