Allow access to Tileset-level metadata (schema
, schemaUri
, groups
, metadata
)
#709
Travis CI / Travis CI - Branch
succeeded
Aug 31, 2023 in 30m 10s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the tileset-metadata-take-two branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has six jobs, running in parallel.
Job | Xcode | ENV | OS | State |
---|---|---|---|---|
6214.1 Check Source Formatting | Linux | passed | ||
6214.2 Windows + VS2017 | windows | passed | ||
6214.3 Windows + VS2019 | windows | passed | ||
6214.4 Linux + GCC | Linux | passed | ||
6214.5 Linux + Clang | CC=clang-10 | Linux | passed | |
6214.6 macOS | xcode12 | macOS | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | C++ |
Operating System | Linux (Xenial) |
Build Configuration
{
"language": "cpp",
"os": [
"linux"
],
"dist": "xenial",
"before_script": [
"mkdir -p build",
"cd build",
"cmake -DCMAKE_BUILD_TYPE:STRING=Debug .."
],
"script": [
"cmake --build . --config Debug",
"ctest -V",
"cmake --build . --config Debug --target cesium-native-docs"
],
"jobs": {
"include": [
{
"name": "Check Source Formatting",
"os": "linux",
"dist": "focal",
"git": {
"submodules": false
},
"before_script": [
],
"script": [
"npm install",
"npm run format -- --dry-run -Werror"
]
},
{
"name": "Windows + VS2017",
"os": "windows",
"install": [
"choco install doxygen.install --version=1.9.2",
"choco install nasm"
],
"before_script": [
"mkdir -p build",
"cd build",
"cmake .. -A x64"
]
},
{
"name": "Windows + VS2019",
"os": "windows",
"install": [
"choco install visualstudio2019buildtools --package-parameters \"--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64\"",
"choco install doxygen.install --version=1.9.2",
"choco install nasm"
]
},
{
"name": "Linux + GCC",
"os": "linux",
"dist": "focal",
"install": [
"sudo rm /etc/apt/sources.list.d/rabbitmq.list",
"sudo apt-get update",
"sudo apt-get install cmake doxygen nasm"
]
},
{
"name": "Linux + Clang",
"os": "linux",
"dist": "focal",
"install": [
"sudo rm /etc/apt/sources.list.d/rabbitmq.list",
"sudo apt-get update",
"sudo apt-get install clang-10 cmake doxygen nasm"
],
"env": [
{
"CC": "clang-10"
},
{
"CXX": "clang++-10"
}
]
},
{
"name": "macOS",
"os": "osx",
"osx_image": "xcode12",
"script": [
"cmake --build . --config Debug",
"ctest -V"
]
}
]
}
}
Loading