Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Release v0.27.0 #108

Merged
merged 8 commits into from
Sep 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ environment:
- CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
- CMAKE_GENERATOR: "Visual Studio 15 2017"
build_script:
- cmd: git submodule update --init --recursive
- cmd: .\.ci\common\script\appveyor.bat
- cmd: cmake -G "%CMAKE_GENERATOR%" .
- cmd: cmake --build . -- /nologo /property:Configuration=Release
- cmd: ctest --output-on-failure -C Release -a
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is exactly how we do it for github.com/measurement-kit/mkcurl

1 change: 0 additions & 1 deletion .ci/common
Submodule common deleted from 46845c
45 changes: 1 addition & 44 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,44 +1 @@
/.ninja_deps
/.ninja_log
/.vs
/ALL_BUILD.vcxproj
/ALL_BUILD.vcxproj.filters
/argh.h
/build.ninja
/catch.hpp
/cmake_install.cmake
/CMakeCache.txt
/CMakeFiles/
/CTestTestfile.cmake
/html
/INSTALL.vcxproj
/INSTALL.vcxproj.filters
/install_manifest.txt
/json.hpp
/latex
/libndt.a
/libndt.dylib
/libndt.sln
/libndt-client
/libndt-client.dir/
/libndt-client.vcxproj
/libndt-client.vcxproj.filters
/Makefile
/MK_DIST/
/Release/
/rules.ninja
/RUN_TESTS.vcxproj
/RUN_TESTS.vcxproj.filters
/Testing/
/tests-curl
/tests-curl.dir/
/tests-curl.vcxproj
/tests-curl.vcxproj.filters
/tests-libndt
/tests-libndt.dir/
/tests-libndt.vcxproj
/tests-libndt.vcxproj.filters
/windows-curl-7.61.0-1.tar.gz
/x64/
/ZERO_CHECK.vcxproj
/ZERO_CHECK.vcxproj.filters
/build
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Simplified like we go in github.com/measurement-kit/mkcurl

6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ matrix:
- env: BUILD_TYPE="ubsan"
- env: BUILD_TYPE="vanilla"
script:
- ./.ci/common/script/travis $BUILD_TYPE
- ./docker.sh $BUILD_TYPE
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now using the script generated by mkbuild

Loading