From 298a2f8534fa08df5089d640121fd4ee053b28d4 Mon Sep 17 00:00:00 2001 From: Syrus Date: Mon, 16 Sep 2019 12:14:09 -0700 Subject: [PATCH] Added system info to tests --- azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aad922544..fae1d39b5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,6 +50,16 @@ jobs: - template: .azure/install-llvm.yml - template: .azure/install-sccache.yml - template: .azure/install-cmake.yml + - bash: | + hostname + uname -a + displayName: System info (*nix) + condition: and(succeeded(), not(eq(variables['Agent.OS'], 'Windows_NT'))) + - bash: | + cat /proc/cpuinfo + cat /proc/meminfo + displayName: System info - Extended (Linux) + condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux')) - bash: make test displayName: Tests (*nix) condition: and(succeeded(), not(eq(variables['Agent.OS'], 'Windows_NT')))