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

env-check.yml - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9292648fa7b83b05a2cf312c57dd2db0516bb5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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'