diff options
author | Michael Lutz <michi@icosahedron.de> | 2019-02-24 21:34:37 +0100 |
---|---|---|
committer | Michael Lutz <michi@icosahedron.de> | 2019-02-24 22:18:10 +0100 |
commit | fa2bea7394a1e29ef0ef037cd0d24db31dad4684 (patch) | |
tree | fffa0aed1f8808a4746d73902d9d7739baa6f956 /azure-pipelines-ci.yml | |
parent | d24a9dfe982f39b6b039084b888b479eddd97ec5 (diff) | |
download | openttd-fa2bea7394a1e29ef0ef037cd0d24db31dad4684.tar.xz |
Change: [AzurePipelines] Use a minimum OSX version of 10.9 during building.
OpenTTD sources are still written in a way to work down to OSX 10.4 or so, as long as you can obtain a C++11 capable compiler. 10.9 is the minimal useful C++11 target using only Apple stuff out-of-the-box.
Diffstat (limited to 'azure-pipelines-ci.yml')
-rw-r--r-- | azure-pipelines-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azure-pipelines-ci.yml b/azure-pipelines-ci.yml index d624f8ce7..7bab1a936 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -55,6 +55,9 @@ jobs: pool: vmImage: 'macOS-10.13' + variables: + MACOSX_DEPLOYMENT_TARGET: 10.9 + steps: - template: azure-pipelines/templates/ci-git-rebase.yml - template: azure-pipelines/templates/osx-dependencies.yml |