Move EncodingTable and CodePageDataItem to System.Text namespace (#17061)
[platform/upstream/coreclr.git] / buildpipeline / alpine.3.6.groovy
1 @Library('dotnet-ci') _
2
3 // Incoming parameters.  Access with "params.<param name>".
4 // Note that the parameters will be set as env variables so we cannot use names that conflict
5 // with the engineering system parameter names.
6 // CGroup - Build configuration.
7 // TestOuter - If true, runs outerloop, if false runs just innerloop
8
9 simpleDockerNode('microsoft/dotnet-buildtools-prereqs:alpine-3.6-3148f11-20171119021156') {
10     stage ('Checkout source') {
11         checkoutRepo()
12     }
13
14     stage ('Initialize tools') {
15         // Init tools
16         sh './init-tools.sh'
17     }
18     stage ('Sync') {
19         sh "./sync.sh"
20     }
21     stage ('Build Product') {
22         sh "./build.sh -x64 -${params.CGroup} -skiprestore -stripSymbols -portablebuild=false"
23     }
24 }