Skip to content

Commit

Permalink
[nodejs.vm] Relax git version to fix CI
Browse files Browse the repository at this point in the history
GitHub actions has upgraded to `git` 2.46, causing that the installation
of `git.install` 2.45 fails in the CI.

Because of what seems to be a Chocolatey bug, the failure of the
`git.install` dependency does not make the packages `git` or `nodejs.vm`
to fail, causing unresolved package dependency constraints in
Chocolatey. This makes any other package to fail to install after the
installation of `nodejs.vm`.

The issue seem to cause a big amount of failure packages in our daily
run, causing that it takes more than 12 hours hours to run.
  • Loading branch information
Ana06 committed Aug 27, 2024
1 parent ac56103 commit 914762a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nodejs.vm/nodejs.vm.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>nodejs.vm</id>
<version>0.0.0.20240516</version>
<version>0.0.0.20240827</version>
<authors>Node.js Foundation</authors>
<description>Metapackage for Node.js to ensure all packages use the same Node.js version.</description>
<dependencies>
<dependency id="common.vm" />
<dependency id="nodejs" version="[20.7.0, 20.8.0)" />
<dependency id="git" version="[2.45.0, 2.46)" />
<dependency id="git" version="[2.45.0,)" />
</dependencies>
</metadata>
</package>

0 comments on commit 914762a

Please sign in to comment.