diff --git a/DeepSpace/src/main/java/com/microsoft/tfs/demo/ImageService.java b/DeepSpace/src/main/java/com/microsoft/tfs/demo/ImageService.java index 6187027c..dc150364 100644 --- a/DeepSpace/src/main/java/com/microsoft/tfs/demo/ImageService.java +++ b/DeepSpace/src/main/java/com/microsoft/tfs/demo/ImageService.java @@ -24,6 +24,7 @@ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * + * * ----------------------------------------------- END OF LICENSE ------------------------------------------ */ package com.microsoft.tfs.demo; diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..c5179986 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent any + + stages { + stage('Foo') { + steps { + echo 'Building..' + } + } + stage('Bar') { + steps { + echo 'Testing..' + } + } + stage('Bazz') { + steps { + echo 'Deploying....' + } + } + } +} diff --git a/README.md b/README.md index 137dfbd7..24f3dc70 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ -# deep-space +# deep-space!!! Sample web application written in Java and uses AngularJS. +New line +another new line +moreeeee +local change +Change at 4:51 diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..c23ced43 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'Ubuntu-16.04' + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' diff --git a/newFileToTest.txt b/newFileToTest.txt new file mode 100644 index 00000000..f6cf5492 --- /dev/null +++ b/newFileToTest.txt @@ -0,0 +1 @@ +Making commit from web at 4:45 diff --git a/vsts-ci.yml b/vsts-ci.yml new file mode 100644 index 00000000..ae96c4ba --- /dev/null +++ b/vsts-ci.yml @@ -0,0 +1,16 @@ + +pool: + vmImage: 'Ubuntu 16.04' + +steps: +- task: Gradle@2 + inputs: + workingDirectory: '' + gradleWrapperFile: 'gradlew' + gradleOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.10' + jdkArchitectureOption: 'x64' + publishJUnitResults: false + testResultsFiles: '**/TEST-*.xml' + tasks: 'build'