@@ -18,16 +18,16 @@ sudo apt update \
18
18
build-essential \
19
19
&& wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash \
20
20
&& source ~/.bashrc \
21
- && nvm install 12.14.1 \
22
- && nvm use 12.14.1 \
23
- && nvm alias default 12.14.1 \
21
+ && nvm install 14 \
22
+ && nvm use 14 \
23
+ && nvm alias default 14 \
24
24
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - \
25
25
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list \
26
26
&& sudo apt update && sudo apt install --no-install-recommends yarn \
27
27
&& mkdir -p ~/dev/git/ \
28
28
&& rm -rf ~/dev/git/arduino-ide \
29
29
&& git clone --depth 1 https://github.com/arduino/arduino-ide.git ~/dev/git/arduino-ide \
30
- && yarn --cwd ~/dev/git/arduino-ide \
30
+ && yarn --cwd ~/dev/git/arduino-ide --ignore-engines \
31
31
&& yarn --cwd ~/dev/git/arduino-ide rebuild:electron \
32
32
&& yarn --cwd ~/dev/git/arduino-ide/electron-app start
33
33
```
0 commit comments