mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
travis: Make macOS' CI use Xcode 10
Keeps the toolchain used for CI up to date. Xcode 10 also brings in better (but not complete) C++17 support on macOS. Notably it allows the use of the <any>, <optional>, and <variant> headers that were introduced in C++17, among other things. Now we can use the standard-provided facilities instead of needing to rely on boost for these.
This commit is contained in:
parent
9518a2d814
commit
e7c281bdaf
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ matrix:
|
||||||
- os: osx
|
- os: osx
|
||||||
env: NAME="macos build"
|
env: NAME="macos build"
|
||||||
sudo: false
|
sudo: false
|
||||||
osx_image: xcode9.3
|
osx_image: xcode10
|
||||||
install: "./.travis/macos/deps.sh"
|
install: "./.travis/macos/deps.sh"
|
||||||
script: "./.travis/macos/build.sh"
|
script: "./.travis/macos/build.sh"
|
||||||
after_success: "./.travis/macos/upload.sh"
|
after_success: "./.travis/macos/upload.sh"
|
||||||
|
|
Loading…
Reference in a new issue