如何使用VSTS构建ISPAC

时间:2017-12-01 04:10:20

标签: ssis azure-pipelines

似乎使用MSBuild构建ISPAC几乎是不可能的。我希望我能找到一种在VSTS构建过程中创建ISPAC的方法,但它似乎并不是直截了当。

ToxicGlobe有一个VSTS任务 https://github.com/ToxicGlobe/VSTS-SSIS-Extension 然而,支持似乎是最小的,并且没有很多牵引力。

现实世界如何在共同的CI流程中创建ISPAC?

2 个答案:

答案 0 :(得分:0)

VSTS中没有此类内置任务,但您可以参考VSTS-SSIS-Extension的源代码来自定义构建/发布任务,以通过VSTS扩展来满足您的要求:here

答案 1 :(得分:0)

我使用以下命令:

var startDate = ee.Date('1950-01-01');
var endDate = ee.Date('2020-12-31');
 
 // select the variable to be processed: pr, tasmin, tasmax
var dataset = ee.ImageCollection('NASA/NEX-GDDP')
                .filter(ee.Filter.date(startDate,endDate));
var all_data = dataset.select(['pr', 'tasmin','tasmax']).mean();

var point = ee.Geometry.Point([72.875, 24.875]); 

var scale = 1000; // or whatever

// use the fc with polygons instead of "point"
var answer = all_data.reduceRegions(point, ee.Reducer.first(), scale);
 
Export.table.toDrive(answer);

在项目的Bin文件夹中,您将找到.ispac文件,请记住在系统变量“路径”中包含devenv.exe的路径