diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-13 00:15:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 09:15:32 +0200 |
commit | 3c622d799929520ce4f1831ec2b8ba575f21e2e0 (patch) | |
tree | 5ad875d052376beac4db5b249aefd88b046af0fc /azure-pipelines.yml | |
parent | 3bc625aff1664eb4206ae90d0a132c8f717e651d (diff) | |
download | Nim-3c622d799929520ce4f1831ec2b8ba575f21e2e0.tar.gz |
upgrade nodejs; add nimCiSystemInfo on azure/github CI (#18003)
* upgrade nodejs; add nimCiSysmtemInfo on all CI * fix typo
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b0fa8cab7..112fb0a62 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -72,8 +72,8 @@ jobs: - task: NodeTool@0 inputs: - versionSpec: '12.x' - displayName: 'Install node.js 12.x' + versionSpec: '16.x' + displayName: 'Install node.js 16.x' condition: and(succeeded(), eq(variables['skipci'], 'false')) - bash: | @@ -147,16 +147,7 @@ jobs: condition: and(succeeded(), eq(variables['skipci'], 'false')) displayName: 'Add build binaries to PATH' - - bash: | - set -e - . ci/funs.sh - echo_run echo 'PATH:' "$PATH" - echo_run echo '##[section]gcc version' - echo_run gcc -v - echo_run echo '##[section]nodejs version' - echo_run node -v - echo_run echo '##[section]make version' - echo_run make -v + - bash: . ci/funs.sh && nimCiSystemInfo condition: and(succeeded(), eq(variables['skipci'], 'false')) displayName: 'System information' |