diff options
author | Patric Stout <truebrain@openttd.org> | 2019-04-07 12:01:32 +0200 |
---|---|---|
committer | glx22 <glx22@users.noreply.github.com> | 2020-06-05 19:36:05 +0200 |
commit | 4218ebc932950a8751146784ea5dad127bc27b10 (patch) | |
tree | 6483a0aad91205fed7c2adfec21699e1e55847b3 /azure-pipelines/templates/linux-build.yml | |
parent | b7643b1d36cb41eb6712042761c13b9819fcbe74 (diff) | |
download | openttd-4218ebc932950a8751146784ea5dad127bc27b10.tar.xz |
Fix: [AzurePipelines] switch the CI / CD to CMake too
This also means dropping Debian/jessie, as it has a CMake that is
too old (3.0), with no real path to upgrade.
Diffstat (limited to 'azure-pipelines/templates/linux-build.yml')
-rw-r--r-- | azure-pipelines/templates/linux-build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/azure-pipelines/templates/linux-build.yml b/azure-pipelines/templates/linux-build.yml index a173f3364..88095c9d3 100644 --- a/azure-pipelines/templates/linux-build.yml +++ b/azure-pipelines/templates/linux-build.yml @@ -28,9 +28,12 @@ steps: inputs: command: 'Run an image' imageName: openttd/${{ parameters.Image }}:${{ parameters.Tag }} - volumes: '$(Build.SourcesDirectory):$(Build.SourcesDirectory)' + volumes: | + $(Build.SourcesDirectory):$(Build.SourcesDirectory) + /usr/local/share/games/openttd:/usr/local/share/games/openttd workingDirectory: '$(Build.SourcesDirectory)' containerCommand: ${{ parameters.ContainerCommand }} runInBackground: false envVars: | TARGET_BRANCH + CTEST_OUTPUT_ON_FAILURE=1 |