summary refs log tree commit diff stats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-05-13 00:15:32 -0700
committerGitHub <noreply@github.com>2021-05-13 09:15:32 +0200
commit3c622d799929520ce4f1831ec2b8ba575f21e2e0 (patch)
tree5ad875d052376beac4db5b249aefd88b046af0fc /.github/workflows
parent3bc625aff1664eb4206ae90d0a132c8f717e651d (diff)
downloadNim-3c622d799929520ce4f1831ec2b8ba575f21e2e0.tar.gz
upgrade nodejs; add nimCiSystemInfo on azure/github CI (#18003)
* upgrade nodejs; add nimCiSysmtemInfo on all CI

* fix typo
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci_docs.yml4
-rw-r--r--.github/workflows/ci_packages.yml8
2 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml
index a62fd12a5..364c05051 100644
--- a/.github/workflows/ci_docs.yml
+++ b/.github/workflows/ci_docs.yml
@@ -70,6 +70,10 @@ jobs:
         shell: bash
         run: echo "${{ github.workspace }}/bin" >> "${GITHUB_PATH}"
 
+      - name: 'System information'
+        shell: bash
+        run: . ci/funs.sh && nimCiSystemInfo
+
       - name: 'Build csourcesAny (posix)'
         # this would work on windows and other CI use this on windows,
         # but we ensure here that `ci/build_autogen.bat` keeps working on windows.
diff --git a/.github/workflows/ci_packages.yml b/.github/workflows/ci_packages.yml
index 247cd2971..d033aba10 100644
--- a/.github/workflows/ci_packages.yml
+++ b/.github/workflows/ci_packages.yml
@@ -20,10 +20,10 @@ jobs:
         with:
           fetch-depth: 2
 
-      - name: 'Install node.js 12.x'
+      - name: 'Install node.js 16.x'
         uses: actions/setup-node@v2
         with:
-          node-version: '12.x'
+          node-version: '16.x'
 
       - name: 'Install dependencies (Linux amd64)'
         if: runner.os == 'Linux' && matrix.cpu == 'amd64'
@@ -51,6 +51,10 @@ jobs:
         shell: bash
         run: echo "${{ github.workspace }}/bin" >> "${GITHUB_PATH}"
 
+      - name: 'System information'
+        shell: bash
+        run: . ci/funs.sh && nimCiSystemInfo
+
       - name: 'Build csourcesAny'
         shell: bash
         run: . ci/funs.sh && nimBuildCsourcesIfNeeded CC=gcc ucpu='${{ matrix.cpu }}'