Skip to content

Commit

Permalink
CI: Install .NET 8.0 manually on AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Nov 27, 2023
1 parent 001187d commit 5d09942
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ environment:
VIPS_VERSION: "8.15.0"
VIPS_WARNING: 0

# TODO(kleisauke): Remove when .NET 8.0 is available in AppVeyor
install:
- ps: |
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
& $env:temp\dotnet-install.ps1 -Architecture x64 -Channel 8.0 -InstallDir "$env:ProgramFiles\dotnet"
# Build script
build_script:
- ps: .\build.ps1 --package
Expand All @@ -21,9 +27,6 @@ skip_tags: true
pull_requests:
do_not_increment_build_number: true

# TODO(kleisauke): Remove when .NET 8.0 is available in AppVeyor
build: off

# Disable automatic tests and deployment
test: off
deploy: off
Expand Down

0 comments on commit 5d09942

Please sign in to comment.