Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--netci.groovy8
-rw-r--r--tools/dotnet-bootstrap/base/lab/shellcall.pycbin1150 -> 0 bytes
3 files changed, 5 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index d38d4c72..ba9ed9d4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ bin/
obj/
project.lock.json
.DS_Store
+*.pyc \ No newline at end of file
diff --git a/netci.groovy b/netci.groovy
index 426cb02e..c830db4c 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -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")
}
}
diff --git a/tools/dotnet-bootstrap/base/lab/shellcall.pyc b/tools/dotnet-bootstrap/base/lab/shellcall.pyc
deleted file mode 100644
index 2cbbc773..00000000
--- a/tools/dotnet-bootstrap/base/lab/shellcall.pyc
+++ /dev/null
Binary files differ