-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
44 lines (33 loc) · 1.12 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
matrix:
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- git submodule update --init
- set DOTNET_CLI_TELEMETRY_OPTOUT=1
build: off
before_build:
- cmd: dotnet --version
before_test:
- cmd /C dotnet build -c Debug
- cmd /C dotnet build -c Release
test_script:
- cmd /C dotnet test -c Debug UnitTests
- cmd /C dotnet test -c Release UnitTests
after_test:
- if not exist dist mkdir dist
- if not exist dist\Release mkdir dist\Release
- if not exist dist\Debug mkdir dist\Debug
- copy DataManipulation\bin\Release\netstandard2.0\Scikit.ML.DataFrame* dist\Release
- copy DataManipulation\bin\Debug\netstandard2.0\Scikit.ML.DataFrame* dist\Debug
artifacts:
- path: dist
name: machinelearningext_dataframe