Add PropertyAttributeView
and PropertyAttributePropertyView
.
#716
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Branch
required action
Sep 8, 2023 in 6m 56s
Build Errored
The build errored. This is a change from the previous build, which passed.
Details
This is a normal build for the property-attributes 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 |
---|---|---|---|---|
6252.1 Check Source Formatting | Linux | errored | ||
6252.2 Windows + VS2017 | windows | failed | ||
6252.3 Windows + VS2019 | windows | failed | ||
6252.4 Linux + GCC | Linux | errored | ||
6252.5 Linux + Clang | CC=clang-10 | Linux | errored | |
6252.6 macOS | xcode12 | macOS | errored |
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