From c5fc94bd428a58162cb5b79a138c3deb32b1b9e4 Mon Sep 17 00:00:00 2001 From: Martin Jonson <88532439+Crustum7@users.noreply.github.com> Date: Fri, 22 Sep 2023 11:51:34 +0200 Subject: [PATCH 1/3] docs: update installation requirements in contributing.md --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b2ba87e7ee8c..aa891b4fc21a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -207,6 +207,7 @@ You must have the following installed on your system to contribute locally: - [`Node.js`](https://nodejs.org/en/) (See the root [.node-version](.node-version) file for the required version. You can find a list of tools on [node-version-usage](https://github.com/shadowspawn/node-version-usage) to switch the version of [`Node.js`](https://nodejs.org/en/) based on [.node-version](.node-version).) - [`yarn`](https://yarnpkg.com/en/docs/install) - [`python`](https://www.python.org/downloads/) (since we use `node-gyp`. See their [repo](https://github.com/nodejs/node-gyp) for Python version requirements.) +- [`cmake`](https://cmake.org/) (`sudo apt install cmake` on Unix) ### Getting Started From 809ea6b84f0dfd74fe7f46d7e25e2b14b09b0da2 Mon Sep 17 00:00:00 2001 From: Martin Jonson <88532439+Crustum7@users.noreply.github.com> Date: Fri, 22 Sep 2023 14:34:43 +0200 Subject: [PATCH 2/3] docs: update installation requirements in contributing.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aa891b4fc21a..14e84472db58 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -207,7 +207,7 @@ You must have the following installed on your system to contribute locally: - [`Node.js`](https://nodejs.org/en/) (See the root [.node-version](.node-version) file for the required version. You can find a list of tools on [node-version-usage](https://github.com/shadowspawn/node-version-usage) to switch the version of [`Node.js`](https://nodejs.org/en/) based on [.node-version](.node-version).) - [`yarn`](https://yarnpkg.com/en/docs/install) - [`python`](https://www.python.org/downloads/) (since we use `node-gyp`. See their [repo](https://github.com/nodejs/node-gyp) for Python version requirements.) -- [`cmake`](https://cmake.org/) (`sudo apt install cmake` on Unix) +- [`cmake`](https://cmake.org/) (`sudo apt install cmake` on Debian-based systems) ### Getting Started From 84ee73acba7fb653a0fd5906e98ac4d47aa4e6eb Mon Sep 17 00:00:00 2001 From: Martin Jonson <88532439+Crustum7@users.noreply.github.com> Date: Sun, 24 Sep 2023 10:43:57 +0200 Subject: [PATCH 3/3] docs: update installation requirements in contributing.md Co-authored-by: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 14e84472db58..843077d6855a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -207,7 +207,7 @@ You must have the following installed on your system to contribute locally: - [`Node.js`](https://nodejs.org/en/) (See the root [.node-version](.node-version) file for the required version. You can find a list of tools on [node-version-usage](https://github.com/shadowspawn/node-version-usage) to switch the version of [`Node.js`](https://nodejs.org/en/) based on [.node-version](.node-version).) - [`yarn`](https://yarnpkg.com/en/docs/install) - [`python`](https://www.python.org/downloads/) (since we use `node-gyp`. See their [repo](https://github.com/nodejs/node-gyp) for Python version requirements.) -- [`cmake`](https://cmake.org/) (`sudo apt install cmake` on Debian-based systems) + - Note for Debian-based systems: `python` is pre-installed.
`sudo apt install g++ make cmake` meets the additional requirements to run `node-gyp` in the context of building Cypress from source. ### Getting Started