Windows 10マシンで、yarnとreact-nativeを使用してビルドジョブを実行しようとしています。次のコマンドは、ネイティブWindowsアプリの実際のビルドを準備するためにjenkins内で実行されます。
yarn config set proxy http://192.109.190.88:8080
yarn config set https-proxy http://192.109.190.88:8080
yarn add react-native
これにより、プロキシ設定は正しいものの、次の出力が表示されます( " http://192.109.190.88:8080/ "も試してみました):
yarn add v0.27.5
[1/4] Resolving packages...
warning There appears to be trouble with your network connection. Retrying...
warning There appears to be trouble with your network connection. Retrying...
warning There appears to be trouble with your network connection. Retrying...
warning There appears to be trouble with your network connection. Retrying...
なぜこれが起こるのかについてのどんな考えもよく評価されます。
このリンク https://yarnpkg.com/lang/en/docs/cli/config/ をたどってhttps-proxyを削除するだけでうまくいきました。
私は同じ問題を抱えており、次の手順で解決しました:
次の端末コマンドを実行します
それは私のために働いた。