appveyor / ci

AppVeyor community support repository
https://www.appveyor.com
344 stars 64 forks source link

node x86 package not found #3898

Closed klausJensen closed 6 months ago

klausJensen commented 6 months ago

Hey,

We have an old project that have been running fine and deployed yesterday, but today fails with out any changes(rolled back to the commit that was successfully deployed yesterday. image

The yml looks like the following:

environment:
  nodejs_version: "10.15.1"

init:
  - git config --global core.autocrlf false
  - git config --global core.longpaths true

cache:
  - packages -> **\packages.config

install:
  - ps: Install-Product node $env:nodejs_version
  - cmd: npm i npm@8.1.3 -g
  - cmd: cd Source\Frontend\ && npm install 

Figured it was Node 10.15.1 that was no longer availablem, so tryed with 10.24.1, and Latest, but got the same error. Any idea what is goin on here ?

FeodorFitsner commented 6 months ago

Node.js on the current image should be fixed now. Sorry for the trouble.

fgambino commented 6 months ago

@FeodorFitsner We are currently running into the same issue on the Visual Studio 2022 image. Omitting the arch or specifying x64 does not fix it. Install-Product node 18 x64

FeodorFitsner commented 6 months ago

@fgambino fixed!

fgambino commented 6 months ago

@fgambino fixed!

Working fine now. Thanks for the quick turnaround!

klausJensen commented 6 months ago

Working fine here as well - thanks