Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnoop Kunchukuttan (STC INDIA) <Anoop.Kunchukuttan@microsoft.com>2020-09-02 13:17:33 +0300
committerAnoop Kunchukuttan (STC INDIA) <Anoop.Kunchukuttan@microsoft.com>2020-09-02 13:17:33 +0300
commit04fe2f4c25f1c8a4464f2d35be7166933dbb3aa0 (patch)
tree0e6cffedff34a433aca5cf021398d98ff539cbea
parent78ca5f3cc5aa671a8a5d36c56452e217e6f00828 (diff)
Set up CI with Azure Pipelines
[skip ci]
-rw-r--r--azure-pipelines.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 000000000..70c8ab651
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,25 @@
+# Starter pipeline
+- task: ComponentGovernanceComponentDetection@0
+ inputs:
+ scanType: 'Register'
+ verbosity: 'Verbose'
+ alertWarningLevel: 'High'
+
+# 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'
+
+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'