Commit 92050d55 authored by Valentin Platzgummer's avatar Valentin Platzgummer

or-tools src temporarily removed

parent 4b04a4b6

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

version: '{build}'
shallow_clone: true
platform: x64
environment:
MSBUILD_FLAGS: /verbosity:minimal /maxcpucount
APPVEYOR_SAVE_CACHE_ON_ERROR: true
matrix:
# Makefile
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
VS_VERSION: 2019
BUILDER: make
LANGUAGE: cc
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
VS_VERSION: 2019
BUILDER: make
LANGUAGE: python
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
VS_VERSION: 2019
BUILDER: make
LANGUAGE: java
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
VS_VERSION: 2019
BUILDER: make
LANGUAGE: dotnet
# CMake
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
VS_VERSION: 2019
BUILDER: cmake
CMAKE_GENERATOR: "Visual Studio 16 2019"
matrix:
fast_finish: false
cache:
- dependencies\install -> makefiles\Makefile.third_party.win.mk
- build\dependencies\install -> cmake\dependencies
before_build:
- git config --global user.email "ci@appveyor.com"
- git config --global user.name "CI"
- if "%VS_VERSION%"=="2017" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
- if "%VS_VERSION%"=="2019" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
- set PATH=C:\Python38-x64;%PATH%
- tools\win\which.exe python.exe
- python -V
- python -m pip install virtualenv wheel six
- tools\win\which.exe dotnet.exe
- dotnet --info
- set "JAVA_HOME=C:\Program Files\Java\jdk11"
- set "PATH=C:\Program Files\Java\jdk11\bin;%PATH%"
- java -version
- set CMAKE_BUILD_PARALLEL_LEVEL=4
- if "%BUILDER%"=="cmake" cmake --version
- if "%BUILDER%"=="cmake" cmake -S. -Bbuild -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_DEPS:BOOL=ON -G "%CMAKE_GENERATOR%" || VER>NUL
- if "%BUILDER%"=="make" del "C:\Program Files\Git\usr\bin\sh.exe"
- if "%BUILDER%"=="make" tools\make.exe detect
build_script:
- if "%BUILDER%"=="cmake" cmake --build build --config Release --target ALL_BUILD -- %MSBUILD_FLAGS%
- if "%BUILDER%"=="make" tools\make.exe help_%LANGUAGE%
- if "%BUILDER%"=="make" ( tools\make.exe %LANGUAGE% || ( tools\make.exe third_party && tools\make.exe %LANGUAGE% ) )
- if "%BUILDER%"=="make" tools\make.exe test_%LANGUAGE%
- if "%LANGUAGE%"=="cc" tools\make.exe test_fz
test_script:
- if "%BUILDER%"=="cmake" cmake --build build --config Release --target RUN_TESTS
# Project Files unneeded by docker
.dockerignore
.git
.gitignore
.travis.yml
.travis
.appveyor.yml
.github
.clang-format
# Bazel
bazel/doc
bazel/README.md
bazel/cache
bazel/docker
bazel/Makefile
# CMake
cmake/doc
cmake/README.md
cmake/cache
cmake/docker
cmake/Makefile
# Makefile
makefiles/doc
makefiles/README.md
makefiles/cache
makefiles/docker
makefiles/Makefile
Makefile.local
binder
docs
tools/docker
tools/release
tools/win
Dependencies.txt
README.md
CONTRIBUTING.md
#LICENSE-2.0.txt
# Native cmake build
classes
dependencies
objs
lib
bin
packages
build/
examples/data/vector_packing
examples/data/rcpsp
examples/data/binpacking
examples/data/spp
examples/data/scp
examples/data/roadef_challenge_2011
examples/data/cvrptw
# Editor directories and files
*.user
*.swp
---
name: Bug report
about: Create a report to help us improve
---
**What version of OR-tools and what language are you using?**
Version: master/v7.3/v7.2 etc.
Language: C++/Java/Python/C#
**Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi)**
**What operating system (Linux, Windows, ...) and version?**
**What did you do?**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**What did you expect to see**
**What did you see instead?**
Make sure you include information that can help us debug (full error message, model Proto).
**Anything else we should know about your project / environment**
\ No newline at end of file
blank_issues_enabled: false
contact_links:
- name: Modeling/Usage problem
url: https://groups.google.com/forum/#!forum/or-tools-discuss
about: Need help creating your model ?
Please use the mailing list for modeling issues.
Github issues have limited audience and answers on the github page will not benefit the rest of the users.
---
name: Feature request
about: Suggest an idea for this project
---
**What language and solver does this apply to?**
All, Python, Java, C#, C++ / CP-SAT, Routing, Linear Solver
**Describe the problem you are trying to solve.**
**Describe the solution you'd like**
**Describe alternatives you've considered**
**Additional context**
Add any other context or screenshots about the feature request here.
\ No newline at end of file
<!--
Thank you for submitting a PR!
Please make sure you are targeting the master branch instead of stable and that all contributors have signed the Contributor License Agreement.
This simply gives us permission to use and redistribute your contributions as part of the project.
Head over to https://cla.developers.google.com/ to see your current agreements on file or to sign a new one.
This project follows https://opensource.google.com/conduct/
Thanks!
-->
\ No newline at end of file
name: Docker Bazel
on: [push, pull_request]