From 2d13eb35d30c8b693c84720cb4879cef13649605 Mon Sep 17 00:00:00 2001 From: KUMAR Date: Thu, 11 Mar 2021 10:12:35 +0530 Subject: [PATCH 1/2] intial commit --- HelloWorld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HelloWorld.java b/HelloWorld.java index d13c25e..c8c5b93 100644 --- a/HelloWorld.java +++ b/HelloWorld.java @@ -4,6 +4,6 @@ */ public class HelloWorld { public static void main(String[] args) { - System.out.println("Hello, World"); + System.out.println("Hello, World this is sid"); } } From f175e8b6c91ee39ffe58b79aaf3cddd6b602e38b Mon Sep 17 00:00:00 2001 From: siddkumar243 <80380899+siddkumar243@users.noreply.github.com> Date: Tue, 16 Mar 2021 12:42:47 +0530 Subject: [PATCH 2/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..6d6e7b7 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,20 @@ +# Starter pipeline +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' +# 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-latest + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script'