Skip to content

Commit

Permalink
Version. Increase to '0.19.9'.
Browse files Browse the repository at this point in the history
  • Loading branch information
lganzzzo committed Oct 5, 2019
1 parent 4e7e09a commit 47e1185
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 14 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
workingDirectory: build

0 comments on commit 47e1185

Please sign in to comment.