mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-27 21:08:44 +08:00
* Add NO_STL std::reverse implementation (#174) Follows the example implementation on [1]. [1] https://en.cppreference.com/w/cpp/algorithm/reverse * Merge remote-tracking branch 'origin/feature/no_stl_unit_tests' into development # Conflicts: # include/etl/stl/alternate/algorithm.h # include/etl/stl/alternate/iterator.h # include/etl/version.h # library.json # library.properties # support/Release notes.txt # test/test_no_stl_algorithm.cpp # test/test_no_stl_iterator.cpp # test/vs2017/etl.vcxproj * Fix merge function duplication * Merge remote-tracking branch 'origin/development' # Conflicts: # include/etl/private/choose_pair_types.h # include/etl/private/choose_tag_types.h # include/etl/version.h # library.json # library.properties # support/Release notes.txt * Update README.md * make_string optimisation. String length is calculated in compile time, no need to use strlen.
23 lines
582 B
YAML
23 lines
582 B
YAML
version: 1.0.{build}
|
|
branches:
|
|
only:
|
|
- master
|
|
image: Visual Studio 2017
|
|
configuration:
|
|
- Debug
|
|
- DebugNoSTL
|
|
clone_folder: c:\projects\etl
|
|
install:
|
|
- cmd: git submodule update --init --recursive
|
|
before_build:
|
|
- cmd: git clone https://github.com/unittest-cpp/unittest-cpp.git c:\projects\unittest-cpp
|
|
build:
|
|
project: test/vs2017/etl.vcxproj
|
|
verbosity: minimal
|
|
notifications:
|
|
- provider: Webhook
|
|
url: https://hooks.slack.com/services/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
|
|
method: POST
|
|
on_build_success: true
|
|
on_build_failure: true
|
|
on_build_status_changed: true |