testing ci

This commit is contained in:
root 2016-11-20 23:47:01 +00:00
parent 9741287939
commit c95654b72e
3 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ bin/
obj/
project.lock.json
.DS_Store
*.pyc

View file

@ -16,9 +16,6 @@ def branch = GithubBranchName
// is a boolean indicating whether the job will be a PR job. If true, the
// suffix _prtest will be appended.
def newJobName = Utilities.getFullJobName(project, configuration, isPR)
// Define build string
def buildString = """echo Configuration: ${configuration} isPR: ${isPR}"""
// Create a new job with the specified name. The brace opens a new closure
// and calls made within that closure apply to the newly created job.
@ -28,7 +25,10 @@ def branch = GithubBranchName
// Indicates that a batch script should be run with the build string (see above)
// Also available is:
// shell (for unix scripting)
shell(buildString)
shell("ls")
shell("python tools/dotnet-bootstrap/base/lab/containers.py bake")
shell("python tools/dotnet-bootstrap/base/lab/cases.py run")
}
}