From 47e11857b6816fb3c7c3bee9cd0f6e01895046ac Mon Sep 17 00:00:00 2001 From: lganzzzo Date: Sun, 6 Oct 2019 01:01:01 +0300 Subject: [PATCH] Version. Increase to '0.19.9'. --- CMakeLists.txt | 2 +- azure-pipelines.yml | 19 ++++++++++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d64e110..6ca433f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1 FATAL_ERROR) ## use these variables to configure module installation set(OATPP_THIS_MODULE_NAME oatpp-curl) ## name of the module (also name of folders in installation dirs) -set(OATPP_THIS_MODULE_VERSION "0.19.8") ## version of the module (also sufix of folders in installation dirs) +set(OATPP_THIS_MODULE_VERSION "0.19.9") ## version of the module (also sufix of folders in installation dirs) set(OATPP_THIS_MODULE_LIBRARIES oatpp-curl) ## list of libraries to find when find_package is called set(OATPP_THIS_MODULE_TARGETS oatpp-curl) ## list of targets to install set(OATPP_THIS_MODULE_DIRECTORIES oatpp-curl) ## list of directories to install diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad0af2f..a3cc498 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,19 +10,28 @@ jobs: pool: vmImage: 'Ubuntu 16.04' container: - image: lganzzzo/ubuntu-cmake-curl:1.0 + image: lganzzzo/ubuntu-cmake-curl:latest workspace: clean: all steps: - script: | mkdir build - - task: CMake@1 - script: | - cmake -DOATPP_MODULES_LOCATION=EXTERNAL .. + git clone https://github.com/oatpp/oatpp + mkdir -p oatpp/build + displayName: 'Checkout - oatpp' + workingDirectory: build + - script: | + cmake .. + sudo make install + displayName: 'Build - oatpp' + workingDirectory: build/oatpp/build + - script: | + cmake .. make - displayName: 'CMake' + displayName: 'Build - module' workingDirectory: build - script: | make test ARGS="-V" displayName: 'Test' - workingDirectory: build \ No newline at end of file + workingDirectory: build