File tree 4 files changed +27
-21
lines changed
4 files changed +27
-21
lines changed Original file line number Diff line number Diff line change 26
26
miniforge-version : latest
27
27
conda-solver : libmamba
28
28
- name : install common dependencies
29
- run : mamba install -n base -c conda-forge conda-build -y
29
+ run : conda install -n base -c conda-forge conda-build -y
30
30
- name : linux conda build
31
31
if : matrix.os == 'ubuntu-latest'
32
32
shell : bash -l {0}
Original file line number Diff line number Diff line change @@ -3,13 +3,6 @@ cd build
3
3
4
4
set CONFIGURATION = Release
5
5
6
- REM set LINKER_FLAGS="-L${PREFIX}/lib"
7
- REM set DYLIB="dylib"
8
- REM if [ `uname` != "Darwin" ]; then
9
- REM LINKER_FLAGS="-Wl,-rpath-link,${PREFIX}/lib ${LINKER_FLAGS}"
10
- REM set DYLIB="so"
11
- REM fi
12
-
13
6
cmake .. -G " NMake Makefiles" ^
14
7
-DCMAKE_BUILD_TYPE=%CONFIGURATION% ^
15
8
-DCMAKE_PREFIX_PATH=" %LIBRARY_PREFIX% " ^
@@ -21,18 +14,6 @@ cmake .. -G "NMake Makefiles" ^
21
14
22
15
if errorlevel 1 exit 1
23
16
24
- REM cmake .. \
25
- REM -DCMAKE_C_COMPILER=${PREFIX}/bin/gcc \
26
- REM -DCMAKE_CXX_COMPILER=${PREFIX}/bin/g++ \
27
- REM -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 \
28
- REM -DCMAKE_INSTALL_PREFIX=${PREFIX} \
29
- REM -DCMAKE_BUILD_TYPE=Release \
30
- REM -DPYTHON_EXECUTABLE=${PYTHON} \
31
- REM -DPYTHON_LIBRARY=${PREFIX}/lib/libpython2.7.${DYLIB} \
32
- REM -DPYTHON_INCLUDE_DIR=${PREFIX}/include/python2.7 \
33
- REM -DPYTHON_INCLUDE_DIR2=${PREFIX}/include/python2.7 \
34
- REM -DWITH_LOG=OFF
35
-
36
17
nmake all
37
18
if errorlevel 1 exit 1
38
19
Original file line number Diff line number Diff line change
1
+ c_compiler :
2
+ - gcc # [linux]
3
+ - clang # [osx]
4
+ - vs2019 # [win and x86_64]
5
+ c_compiler_version : # [unix]
6
+ - 13 # [linux]
7
+ - 18 # [osx]
8
+
9
+ c_stdlib :
10
+ - sysroot # [linux]
11
+ - macosx_deployment_target # [osx]
12
+ - vs # [win]
13
+ c_stdlib_version : # [unix]
14
+ - 2.17 # [linux]
15
+ - 10.13 # [osx and x86_64]
16
+ - 11.0 # [osx and arm64]
17
+ cxx_compiler :
18
+ - gxx # [linux]
19
+ - clangxx # [osx]
20
+ - vs2019 # [win and x86_64]
21
+ cxx_compiler_version : # [unix]
22
+ - 13 # [linux]
23
+ - 18 # [osx]
24
+
1
25
boost :
2
26
- 1.86.0
3
27
lemon :
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ source:
15
15
16
16
build :
17
17
number : 0
18
- string : py{{CONDA_PY}}_{{PKG_BUILDNUM}}_h{{PKG_HASH}}_g{{GIT_FULL_HASH[:7]}}
19
18
skip :
20
19
true # [py2k]
21
20
@@ -33,6 +32,8 @@ requirements:
33
32
- libboost-python-devel {{ boost }}*
34
33
- lemon {{ lemon }}*
35
34
- python
35
+ run :
36
+ - python
36
37
37
38
test :
38
39
source_files :
You can’t perform that action at this time.
0 commit comments