i have a source code of kibana 7.3.3
i want to build kibana by :
yarn build --skip-node-download --skip-os-packages --skip-archives
i have no internet access except an http proxy!
i want to build kibana by using this proxy but i get this error:
yarn run v1.16.0
$ node scripts/build --skip-node-download --skip-os-packages --skip-archives
info [ global ] Verifying environment meets requirements
│ succ Node.js version verified
│ succ ✓ 0 sec
info [ global ] Cleaning artifacts from previous builds
│ debg Deleting patterns: [ '/home/user/Desktop/Sources/kibana/kibana/build',
│ '/home/user/Desktop/Sources/kibana/kibana/target' ]
│ debg Deleted 0 files/directories
│ succ ✓ 0 sec
info [ global ] Verifying previously downloaded node.js build for all platforms
│ERROR failure
│ERROR Error: connect ENETUNREACH 104.20.22.46:443
│ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1104:14)
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
I try several ways e.g:
yarn config set http_proxy http://....
yarn config set https_proxy http://...
OR
yarn config set httpProxy http://...
yarn config set httpsProxy http://...
I also try http_proxy='http://...' in terminal but it does not work!
Please clear steps for building kibana!