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) <ankunchu@microsoft.com>2020-09-03 10:25:22 +0300
committerAnoop Kunchukuttan (STC INDIA) <ankunchu@microsoft.com>2020-09-03 10:25:22 +0300
commit33da1af73a76fa5083d98e0f8a95a33af53a49dc (patch)
treeacc398291c23300103e25b5216c94911341cdc7b /env-check.yml
parent5f1c2c2d805f6b2bd2bd755604fe75f539092118 (diff)
added new pipelines
Diffstat (limited to 'env-check.yml')
-rw-r--r--env-check.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/env-check.yml b/env-check.yml
new file mode 100644
index 000000000..43c23fb52
--- /dev/null
+++ b/env-check.yml
@@ -0,0 +1,34 @@
+# 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-latest'
+ vmImage: ubuntu-16.04
+
+steps:
+
+- script: |
+ echo Printing some environment information
+ echo HOME: $HOME
+ echo
+ echo UBUNTU VERSION:
+ cat /etc/lsb-release
+ echo
+ echo CPU INFO
+ cat /proc/cpuinfo
+ echo
+ echo MEM INFO
+ cat /proc/meminfo
+ echo
+ echo DISK INFO
+ df -h
+ echo
+ echo PWD: $PWD
+ echo
+ ls
+ displayName: 'Printing some environment information' \ No newline at end of file