├── .gitignore ├── Jenkinsfile ├── README.md ├── m2 ├── demo2 │ ├── 2.1 │ │ └── Jenkinsfile │ ├── 2.2 │ │ └── Jenkinsfile │ └── 2.3 │ │ └── Jenkinsfile └── demo3 │ ├── 3.1 │ └── Jenkinsfile │ ├── 3.2 │ └── Jenkinsfile │ ├── 3.3 │ └── Jenkinsfile │ └── build.sh ├── m3 ├── demo1 │ ├── 1.1 │ │ └── Jenkinsfile │ ├── 1.2 │ │ └── Jenkinsfile │ └── 1.3 │ │ └── Jenkinsfile ├── demo2 │ ├── 2.1 │ │ └── Jenkinsfile │ ├── 2.2 │ │ └── Jenkinsfile │ └── 2.3 │ │ └── Jenkinsfile ├── demo3 │ ├── Jenkinsfile │ └── README.md └── src │ ├── Pi.Math.Tests │ ├── MachinFormulaTests.cs │ └── Pi.Math.Tests.csproj │ ├── Pi.Math │ ├── Atan.cs │ ├── HighPrecision.cs │ ├── MachinFormula.cs │ └── Pi.Math.csproj │ ├── Pi.Runtime.Tests │ ├── ArgumentsTests.cs │ └── Pi.Runtime.Tests.csproj │ ├── Pi.Runtime │ ├── Arguments.cs │ ├── Pi.Runtime.csproj │ └── RunMode.cs │ ├── Pi.Web │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── PiController.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── PiViewModel.cs │ ├── Pi.Web.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Pi │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── force-build.txt │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── img │ │ └── pi-large.png │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── Pi.sln ├── m4 ├── Dockerfile ├── Dockerfile.sdk ├── demo1 │ ├── 1.1 │ │ └── Jenkinsfile │ ├── 1.2 │ │ ├── Jenkinsfile │ │ └── Jenkinsfile.fixed │ └── 1.3 │ │ └── Jenkinsfile ├── demo2 │ ├── 2.1 │ │ └── Jenkinsfile │ ├── 2.2 │ │ └── Jenkinsfile │ └── 2.3 │ │ └── job_dsl.groovy └── src │ ├── Pi.Math.Tests │ ├── MachinFormulaTests.cs │ └── Pi.Math.Tests.csproj │ ├── Pi.Math │ ├── Atan.cs │ ├── HighPrecision.cs │ ├── MachinFormula.cs │ └── Pi.Math.csproj │ ├── Pi.Runtime.Tests │ ├── ArgumentsTests.cs │ └── Pi.Runtime.Tests.csproj │ ├── Pi.Runtime │ ├── Arguments.cs │ ├── Pi.Runtime.csproj │ └── RunMode.cs │ ├── Pi.Web │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── PiController.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── PiViewModel.cs │ ├── Pi.Web.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Pi │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── force-build.txt │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── img │ │ └── pi-large.png │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── Pi.sln └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pipeline-demos -------------------------------------------------------------------------------- /m2/demo2/2.1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m2/demo2/2.1/Jenkinsfile -------------------------------------------------------------------------------- /m2/demo2/2.2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m2/demo2/2.2/Jenkinsfile -------------------------------------------------------------------------------- /m2/demo2/2.3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m2/demo2/2.3/Jenkinsfile -------------------------------------------------------------------------------- /m2/demo3/3.1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m2/demo3/3.1/Jenkinsfile -------------------------------------------------------------------------------- /m2/demo3/3.2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m2/demo3/3.2/Jenkinsfile -------------------------------------------------------------------------------- /m2/demo3/3.3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m2/demo3/3.3/Jenkinsfile -------------------------------------------------------------------------------- /m2/demo3/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Using API key: $API_KEY" -------------------------------------------------------------------------------- /m3/demo1/1.1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo1/1.1/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo1/1.2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo1/1.2/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo1/1.3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo1/1.3/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo2/2.1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo2/2.1/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo2/2.2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo2/2.2/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo2/2.3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo2/2.3/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo3/Jenkinsfile -------------------------------------------------------------------------------- /m3/demo3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/demo3/README.md -------------------------------------------------------------------------------- /m3/src/Pi.Math.Tests/MachinFormulaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Math.Tests/MachinFormulaTests.cs -------------------------------------------------------------------------------- /m3/src/Pi.Math.Tests/Pi.Math.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Math.Tests/Pi.Math.Tests.csproj -------------------------------------------------------------------------------- /m3/src/Pi.Math/Atan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Math/Atan.cs -------------------------------------------------------------------------------- /m3/src/Pi.Math/HighPrecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Math/HighPrecision.cs -------------------------------------------------------------------------------- /m3/src/Pi.Math/MachinFormula.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Math/MachinFormula.cs -------------------------------------------------------------------------------- /m3/src/Pi.Math/Pi.Math.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Math/Pi.Math.csproj -------------------------------------------------------------------------------- /m3/src/Pi.Runtime.Tests/ArgumentsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Runtime.Tests/ArgumentsTests.cs -------------------------------------------------------------------------------- /m3/src/Pi.Runtime.Tests/Pi.Runtime.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Runtime.Tests/Pi.Runtime.Tests.csproj -------------------------------------------------------------------------------- /m3/src/Pi.Runtime/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Runtime/Arguments.cs -------------------------------------------------------------------------------- /m3/src/Pi.Runtime/Pi.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Runtime/Pi.Runtime.csproj -------------------------------------------------------------------------------- /m3/src/Pi.Runtime/RunMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Runtime/RunMode.cs -------------------------------------------------------------------------------- /m3/src/Pi.Web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/.vscode/launch.json -------------------------------------------------------------------------------- /m3/src/Pi.Web/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/.vscode/tasks.json -------------------------------------------------------------------------------- /m3/src/Pi.Web/Controllers/PiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Controllers/PiController.cs -------------------------------------------------------------------------------- /m3/src/Pi.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /m3/src/Pi.Web/Models/PiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Models/PiViewModel.cs -------------------------------------------------------------------------------- /m3/src/Pi.Web/Pi.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Pi.Web.csproj -------------------------------------------------------------------------------- /m3/src/Pi.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Program.cs -------------------------------------------------------------------------------- /m3/src/Pi.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /m3/src/Pi.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Startup.cs -------------------------------------------------------------------------------- /m3/src/Pi.Web/Views/Pi/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Views/Pi/Index.cshtml -------------------------------------------------------------------------------- /m3/src/Pi.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /m3/src/Pi.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m3/src/Pi.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /m3/src/Pi.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m3/src/Pi.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m3/src/Pi.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/appsettings.Development.json -------------------------------------------------------------------------------- /m3/src/Pi.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/appsettings.json -------------------------------------------------------------------------------- /m3/src/Pi.Web/force-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/force-build.txt -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/img/pi-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/img/pi-large.png -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /m3/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /m3/src/Pi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m3/src/Pi.sln -------------------------------------------------------------------------------- /m4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/Dockerfile -------------------------------------------------------------------------------- /m4/Dockerfile.sdk: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/core/sdk:3.1.101 AS builder 2 | 3 | ENV PS_MODULE=m4 -------------------------------------------------------------------------------- /m4/demo1/1.1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo1/1.1/Jenkinsfile -------------------------------------------------------------------------------- /m4/demo1/1.2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo1/1.2/Jenkinsfile -------------------------------------------------------------------------------- /m4/demo1/1.2/Jenkinsfile.fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo1/1.2/Jenkinsfile.fixed -------------------------------------------------------------------------------- /m4/demo1/1.3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo1/1.3/Jenkinsfile -------------------------------------------------------------------------------- /m4/demo2/2.1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo2/2.1/Jenkinsfile -------------------------------------------------------------------------------- /m4/demo2/2.2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo2/2.2/Jenkinsfile -------------------------------------------------------------------------------- /m4/demo2/2.3/job_dsl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/demo2/2.3/job_dsl.groovy -------------------------------------------------------------------------------- /m4/src/Pi.Math.Tests/MachinFormulaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Math.Tests/MachinFormulaTests.cs -------------------------------------------------------------------------------- /m4/src/Pi.Math.Tests/Pi.Math.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Math.Tests/Pi.Math.Tests.csproj -------------------------------------------------------------------------------- /m4/src/Pi.Math/Atan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Math/Atan.cs -------------------------------------------------------------------------------- /m4/src/Pi.Math/HighPrecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Math/HighPrecision.cs -------------------------------------------------------------------------------- /m4/src/Pi.Math/MachinFormula.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Math/MachinFormula.cs -------------------------------------------------------------------------------- /m4/src/Pi.Math/Pi.Math.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Math/Pi.Math.csproj -------------------------------------------------------------------------------- /m4/src/Pi.Runtime.Tests/ArgumentsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Runtime.Tests/ArgumentsTests.cs -------------------------------------------------------------------------------- /m4/src/Pi.Runtime.Tests/Pi.Runtime.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Runtime.Tests/Pi.Runtime.Tests.csproj -------------------------------------------------------------------------------- /m4/src/Pi.Runtime/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Runtime/Arguments.cs -------------------------------------------------------------------------------- /m4/src/Pi.Runtime/Pi.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Runtime/Pi.Runtime.csproj -------------------------------------------------------------------------------- /m4/src/Pi.Runtime/RunMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Runtime/RunMode.cs -------------------------------------------------------------------------------- /m4/src/Pi.Web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/.vscode/launch.json -------------------------------------------------------------------------------- /m4/src/Pi.Web/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/.vscode/tasks.json -------------------------------------------------------------------------------- /m4/src/Pi.Web/Controllers/PiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Controllers/PiController.cs -------------------------------------------------------------------------------- /m4/src/Pi.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /m4/src/Pi.Web/Models/PiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Models/PiViewModel.cs -------------------------------------------------------------------------------- /m4/src/Pi.Web/Pi.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Pi.Web.csproj -------------------------------------------------------------------------------- /m4/src/Pi.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Program.cs -------------------------------------------------------------------------------- /m4/src/Pi.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /m4/src/Pi.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Startup.cs -------------------------------------------------------------------------------- /m4/src/Pi.Web/Views/Pi/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Views/Pi/Index.cshtml -------------------------------------------------------------------------------- /m4/src/Pi.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /m4/src/Pi.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m4/src/Pi.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /m4/src/Pi.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m4/src/Pi.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m4/src/Pi.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/appsettings.Development.json -------------------------------------------------------------------------------- /m4/src/Pi.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/appsettings.json -------------------------------------------------------------------------------- /m4/src/Pi.Web/force-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/force-build.txt -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/img/pi-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/img/pi-large.png -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /m4/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /m4/src/Pi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/jenkins-pipeline-demos/HEAD/m4/src/Pi.sln -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Inside the script, demo $DEMO" --------------------------------------------------------------------------------