Skip to content

Commit

Permalink
Update Node 10.14.2 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpcastro authored May 18, 2019
1 parent e1b3eca commit 5e1ddd1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions images/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ RUN curl -sL https://git.io/n-install | bash -s -- -ny - \
&& ~/n/bin/n -d 9.4.0 \
&& ~/n/bin/n -d 10.1.0 \
&& ~/n/bin/n -d 10.10.0 \
&& ~/n/bin/n -d 10.14.1 \
&& ~/n/bin/n -d 10.14.2 \
&& ~/n/bin/n -d 10.15.2 \
&& mv /usr/local/n/versions/node /opt/nodejs \
&& rm -rf /usr/local/n ~/n
Expand Down Expand Up @@ -189,7 +189,7 @@ RUN set -ex \
&& ln -s 9.4 /opt/nodejs/9 \
&& ln -s 10.1.0 /opt/nodejs/10.1 \
&& ln -s 10.10.0 /opt/nodejs/10.10 \
&& ln -s 10.14.1 /opt/nodejs/10.14 \
&& ln -s 10.14.2 /opt/nodejs/10.14 \
&& ln -s 10.15.2 /opt/nodejs/10.15 \
&& ln -s 10.15 /opt/nodejs/10 \
&& ln -s 10 /opt/nodejs/lts
Expand Down
4 changes: 2 additions & 2 deletions tests/Oryx.BuildImage.Tests/VersionInformationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public void Python3Alias_UsesPythonLatestVersion_ByDefault_WhenNoExplicitVersion
[InlineData("10.1", "v10.1.0")]
[InlineData("10.1.0", "v10.1.0")]
[InlineData("10.10.0", "v10.10.0")]
[InlineData("10.14.1", "v10.14.1")]
[InlineData("10.14.2", "v10.14.2")]
[InlineData("10.15", "v10.15.2")]
public void NodeAlias_UsesVersion_SetOnBenv(string specifiedVersion, string expectedOutput)
{
Expand Down Expand Up @@ -256,7 +256,7 @@ public void NodeAlias_UsesVersion_SetOnBenv(string specifiedVersion, string expe
[InlineData("10.1", "5.6.0")]
// Make sure the we get the upgraded version of npm in the following cases
[InlineData("10.10.0", "6.9.0")]
[InlineData("10.14.1", "6.9.0")]
[InlineData("10.14.2", "6.9.0")]
[InlineData("10.15", "6.9.0")]
public void UsesExpectedNpmVersion(string nodeVersion, string expectedOutput)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Oryx.RuntimeImage.Tests/NodeImagesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public NodeRuntimeImageOtherTests(ITestOutputHelper output, TestTempDirTestFixtu
[InlineData("10.1", "10.1.0")]
[InlineData("10.10", "10.10.0")]
[InlineData("10.12", "10.12.0")]
[InlineData("10.14", "10.14.1")]
[InlineData("10.14", "10.14.2")]
public void NodeVersionMatchesImageName(string nodeTag, string nodeVersion)
{
// Arrange & Act
Expand Down

0 comments on commit 5e1ddd1

Please sign in to comment.