summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-09-12 20:21:31 -0400
committerLex Neva <github.com@lexneva.name>2018-09-12 20:21:31 -0400
commitc1567d4b7a3d3b8769c5d5e4e9b986d39849d1d9 (patch)
tree8ed025d9479d5f8495d7e9e82b544645d0ce0e3d /azure-pipelines.yml
parent944022ee53d97af451e810f3b98ff077f77e13dc (diff)
parenta80d7a75702b0b63d2f64bc8616a51ec49422865 (diff)
Merge remote-tracking branch 'origin/master' into lexelby/bug-fixes
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 00000000..8ae24f01
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,17 @@
+# 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
+
+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'