Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
fa26de0
Update README.md
leantk Sep 18, 2017
a04f695
Update README.md
leantk Sep 18, 2017
2a32c39
Update README.md
leantk Sep 18, 2017
62f1926
Update README.md
leantk Sep 18, 2017
dca2810
Update ImageService.java
leantk Sep 18, 2017
2c0d873
Update README.md
leantk Sep 18, 2017
989ca8f
Update README.md
leantk Sep 18, 2017
e12fe56
Update README.md
leantk Sep 18, 2017
194edae
Update README.md
leantk Sep 19, 2017
40b8f93
Update README.md
leantk Oct 12, 2017
f6cd85e
Create Jenkinsfile
leantk Feb 8, 2018
b08abb7
Merge pull request #50 from leantk/Adding-Jenkins
leantk Feb 8, 2018
fa25367
Update Jenkinsfile
leantk Feb 8, 2018
e2e2dea
Merge pull request #51 from leantk/Jenkins2
leantk Feb 8, 2018
e5c5e26
Update README.md
leantk Feb 8, 2018
a30e588
Update README.md
leantk Feb 8, 2018
f96e68a
test
leantk Apr 19, 2018
8a5ab4a
Date
leantk Apr 18, 2018
03a95b7
Date GMT
leantk Apr 18, 2018
9250224
Update README.md
leantk May 15, 2018
926adda
Update README.md
leantk May 15, 2018
523fc1f
Update README.md
leantk May 15, 2018
5529150
Set up CI with VSTS Pipelines
pjquirk Sep 27, 2018
e490b60
Set up CI with Azure Pipelines
leantk Oct 10, 2018
0fac069
Delete azure-pipelines.yml
leantk Oct 10, 2018
fdaee92
Set up CI with Azure Pipelines
leantk Oct 10, 2018
51427d2
Delete azure-pipelines.yml
leantk Oct 10, 2018
54a131e
Set up CI with Azure Pipelines
leantk Jan 10, 2019
2eade2c
Delete azure-pipelines.yml
leantk Jan 11, 2019
2e3fdbd
Set up CI with Azure Pipelines
azure-pipelines[bot] Jan 14, 2019
c689223
Update README.md
leantk Jan 29, 2019
4fd0128
Update README.md
leantk Jan 29, 2019
93f247e
Update README.md
leantk Jan 29, 2019
d7e80ca
local change
leantk Jan 30, 2019
2b2bbf0
change at 4:51
leantk Jan 30, 2019
5b87566
local commit at 4:42
leantk Feb 4, 2019
d4c7089
Update newFileToTest.txt
leantk Feb 4, 2019
640228a
Merge branch 'leantk-patch-10' of https://github.com/leantk/deep-spac…
leantk Feb 4, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
21 changes: 21 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pipeline {
agent any

stages {
stage('Foo') {
steps {
echo 'Building..'
}
}
stage('Bar') {
steps {
echo 'Testing..'
}
}
stage('Bazz') {
steps {
echo 'Deploying....'
}
}
}
}
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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'
1 change: 1 addition & 0 deletions newFileToTest.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Making commit from web at 4:45
16 changes: 16 additions & 0 deletions vsts-ci.yml
Original file line number Diff line number Diff line change
@@ -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'