File tree 3 files changed +39
-5
lines changed
3 files changed +39
-5
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+ set -x
5
+
6
+ if [[ " $( uname -s) " == ' Darwin' ]]; then
7
+ source ~ /venv3.8.1/bin/activate
8
+ python --version
9
+
10
+ pip install conan --upgrade
11
+ pip install conan_package_tools
12
+ conan --version
13
+ conan user
14
+ conan config install conan_config/
15
+ fi
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+ set -x
5
+
6
+ if [[ " $( uname -s) " == ' Darwin' ]]; then
7
+ source ~ /venv3.8.1/bin/activate
8
+ python build.py
9
+ fi
Original file line number Diff line number Diff line change @@ -10,16 +10,26 @@ environment:
10
10
CONAN_UPLOAD : " https://api.bintray.com/conan/ltjax/conan"
11
11
12
12
matrix :
13
+ - APPVEYOR_BUILD_WORKER_IMAGE : macos
14
+ CONAN_APPLE_CLANG_VERSIONS : " 11.0"
13
15
- APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2019
14
16
CONAN_VISUAL_VERSIONS : 16
15
17
- APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
16
18
CONAN_VISUAL_VERSIONS : 15
17
19
18
20
install :
19
- - set PATH=%PATH%;%PYTHON%/Scripts/
20
- - pip.exe install conan --upgrade
21
- - pip.exe install conan_package_tools
22
- - conan user # It creates the conan data directory
21
+ # Windows build
22
+ - cmd : set PATH=%PATH%;%PYTHON%/Scripts/
23
+ - cmd : pip.exe install conan --upgrade
24
+ - cmd : pip.exe install conan_package_tools
25
+ - cmd : conan user # It creates the conan data directory
26
+ # macOS build
27
+ - sh : chmod +x .appveyor/install.sh
28
+ - sh : .appveyor/install.sh
23
29
24
30
test_script :
25
- - python build.py
31
+ # Windows build
32
+ - cmd : python build.py
33
+ # macOS build
34
+ - sh : chmod +x .appveyor/run.sh
35
+ - sh : .appveyor/run.sh
You can’t perform that action at this time.
0 commit comments