File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 22
22
strategy :
23
23
fail-fast : false
24
24
matrix :
25
- os : [ubuntu-latest, macOS-latest, windows-latest ]
25
+ os : [ubuntu-latest, macOS-latest]
26
26
python-version : ["3.9", "3.10", "3.11"]
27
27
BUILD_TYPE : [Release]
28
28
@@ -88,12 +88,16 @@ jobs:
88
88
sed -i '' "1s/.*/VERSION = '${{ github.ref_name }}'/" dgtalVersion.py
89
89
cat dgtalVersion.py
90
90
91
+ - name : Create Build Environment
92
+ run : cmake -E make_directory ${{runner.workspace}}/build
93
+
91
94
- name : Deps on Windows
92
95
if : matrix.os == 'windows-latest'
93
96
shell : bash
94
- working-directory : ${{runner.workspace}}
97
+ working-directory : ${{runner.workspace}}/build
95
98
run : |
96
99
conan install $GITHUB_WORKSPACE --build=missing
100
+ cmake $GITHUB_WORKSPACE -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=${{ matrix.BUILD_TYPE }} $CONFIG_PYTHON $CONFIG_GLOBAL $CONFIG_WINDOWS
97
101
98
102
- name : Setting build informations (Windows)
99
103
if : matrix.os == 'windows-latest'
You can’t perform that action at this time.
0 commit comments