1 Star 0 Fork 1

VegetableAndChicken/cesium-native

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.travis.yml 2.21 KB
一键复制 编辑 原始数据 按行查看 历史
Bao Tran 提交于 2022-07-01 11:45 . remove unneeded command
language: cpp
# Default scripts, which may be overridden by some jobs
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
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
- name: Linux + GCC
os: linux
dist: focal
install:
- # As of 2021-08-23, the server listed in the rabbitmq PPA has an expired certificate
- # and breaks our ability to update. We don't need it, so remove it.
- sudo rm /etc/apt/sources.list.d/rabbitmq.list
- sudo apt-get update
- sudo apt-get install cmake doxygen
- name: Linux + Clang
os: linux
dist: focal
# We're using Clang 10 instead of the default (Clang 7) because of std::variant related failures
# on Clang 7, possibly related to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90397
install:
- # As of 2021-08-23, the server listed in the rabbitmq PPA has an expired certificate
- # and breaks our ability to update. We don't need it, so remove it.
- sudo rm /etc/apt/sources.list.d/rabbitmq.list
- sudo apt-get update
- sudo apt-get install clang-10 cmake doxygen
env:
- CC=clang-10
- CXX=clang++-10
- name: macOS
os: osx
osx_image: xcode12
script:
- cmake --build . --config Debug
- ctest -V
- # Doc build doesn't work on Mac (missing Doxygen). Let's just skip it.
- #cmake --build . --config Debug --target cesium-native-docs
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/vegetableandchicken/cesium-native.git
git@gitee.com:vegetableandchicken/cesium-native.git
vegetableandchicken
cesium-native
cesium-native
main

搜索帮助