build
build copied to clipboard
Netlify Build (node process) runs the build command, Build Plugins and bundles Netlify Functions. Can be run in Buildbot or locally using Netlify CLI
A plugin author (@brunoquaresma) [have asked](https://community.netlify.com/t/building-plugin-secret-inputs/14550) for the possibility to add secret inputs. At the moment, Build plugins can do this using either: - environment variables - the filesystem (reading...
Build plugins [are installed](https://github.com/netlify/build/blob/b9f414b808b993abd9590d44fbfea87d03eb6bf3/packages/build/src/install/main.js#L77) using `npm install` or `yarn`. We already install dependencies using [`npm install`](https://github.com/netlify/build-image/blob/3a3e63f876b1fa8702f47ede08f4e691d1ba5fbe/run-build-functions.sh#L125) or [`yarn`](https://github.com/netlify/build-image/blob/3a3e63f876b1fa8702f47ede08f4e691d1ba5fbe/run-build-functions.sh#L73) in the buildbot. The buildbot logic includes several features: caching, `YARN_VERSION`, `NPM_VERSION`,...
This issue is part of the bigger issue at #40. Also related to #667. Some environment variables are used mainly inside the buildbot's internal logic. Most (but not all) are...
Two Yarn-related tests are currently always failing on my local machine (and randomly in CI). We should first skip those. https://github.com/netlify/build/blob/e49f7dccd218d942429d39b48bbedc6a7bc83356/packages/build/tests/install/tests.js#L106-L115 Then, https://github.com/netlify/pod-workflow/issues/215 will remove the need for those tests...
## Problem `@netlify/config` validates configuration properties. For example, the following is valid: ```toml [context.production] command = "test" ``` But the following is invalid (`context` should not be a string) and...
## Test error in Example.com **ExampleException** in **home#example** Something really bad happened [View on Bugsnag](http://app.bugsnag.com/errors/example/events/example?i=gh&m=te) ## Stacktrace app/controllers/home_controller.rb:123 - example app/controllers/other_controller.rb:12 - broken lib/important/magic.rb:4 - load_something [View full stacktrace](http://app.bugsnag.com/errors/example/events/example?i=gh&m=te) *Created...
Background and initial discussions at https://github.com/netlify/build/pull/2018 When Functions are being bundled in a build, we currently print them like this:  Those are the Functions source files. The following information...
**Which problem is this feature request solving?** Our users [have noticed](https://github.com/cypress-io/netlify-plugin-cypress/issues/119) that nested backend child processes are not killed when running Cypress end-to-end tests during the build steps. For example,...
**Which problem is this feature request solving?** With https://github.com/netlify/build/pull/2188, we'll still support `netlify-automatic-functions` as the default Functions directory, but we'll start showing a deprecation message. At some point (to be...