Skip to content

Commit 16739eb

Browse files
committed
Version. Increase to '0.19.9'.
1 parent 2a85c24 commit 16739eb

File tree

2 files changed

+31
-11
lines changed

2 files changed

+31
-11
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
55
## use these variables to configure module installation
66

77
set(OATPP_THIS_MODULE_NAME oatpp-mbedtls) ## name of the module (also name of folders in installation dirs)
8-
set(OATPP_THIS_MODULE_VERSION "0.19.8") ## version of the module (also sufix of folders in installation dirs)
8+
set(OATPP_THIS_MODULE_VERSION "0.19.9") ## version of the module (also sufix of folders in installation dirs)
99
set(OATPP_THIS_MODULE_LIBRARIES oatpp-mbedtls) ## list of libraries to find when find_package is called
1010
set(OATPP_THIS_MODULE_TARGETS oatpp-mbedtls) ## list of targets to install
1111
set(OATPP_THIS_MODULE_DIRECTORIES oatpp-mbedtls) ## list of directories to install

azure-pipelines.yml

+30-10
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,26 @@ jobs:
1818
displayName: 'build MbedTLS'
1919
- script: |
2020
mkdir build
21-
- task: CMake@1
2221
- script: |
23-
cmake -DMBEDTLS_ROOT_DIR=utility/install-deps/tmp/mbedtls-build -DOATPP_MODULES_LOCATION=EXTERNAL ..
22+
git clone https://github.com/oatpp/oatpp
23+
mkdir -p oatpp/build
24+
displayName: 'Checkout - oatpp'
25+
workingDirectory: build
26+
- script: |
27+
cmake ..
28+
sudo make install
29+
displayName: 'Build - oatpp'
30+
workingDirectory: build/oatpp/build
31+
- script: |
32+
cmake -DMBEDTLS_ROOT_DIR=utility/install-deps/tmp/mbedtls-build ..
2433
make
25-
displayName: 'CMake'
34+
displayName: 'Build - module'
2635
workingDirectory: build
2736
- script: |
28-
./module-tests
37+
make test ARGS="-V"
2938
displayName: 'Test'
30-
workingDirectory: build/test
39+
workingDirectory: build
40+
3141
- job: macOS
3242
displayName: 'Build - macOS'
3343
continueOnError: false
@@ -42,13 +52,23 @@ jobs:
4252
displayName: 'build MbedTLS'
4353
- script: |
4454
mkdir build
45-
- task: CMake@1
4655
- script: |
47-
cmake -DMBEDTLS_ROOT_DIR=utility/install-deps/tmp/mbedtls-build -DOATPP_MODULES_LOCATION=EXTERNAL ..
56+
git clone https://github.com/oatpp/oatpp
57+
mkdir -p oatpp/build
58+
displayName: 'Checkout - oatpp'
59+
workingDirectory: build
60+
- script: |
61+
cmake ..
62+
sudo make install
63+
displayName: 'Build - oatpp'
64+
workingDirectory: build/oatpp/build
65+
- script: |
66+
cmake -DMBEDTLS_ROOT_DIR=utility/install-deps/tmp/mbedtls-build ..
4867
make
49-
displayName: 'CMake'
68+
displayName: 'Build - module'
5069
workingDirectory: build
5170
- script: |
52-
./module-tests
71+
make test ARGS="-V"
5372
displayName: 'Test'
54-
workingDirectory: build/test
73+
workingDirectory: build
74+

0 commit comments

Comments
 (0)