Skip to content

Commit

Permalink
Update vips installation in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimbbp committed Mar 15, 2024
1 parent b33627c commit 811363d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,11 @@ jobs:
${{ runner.os }}-go-
- name: Download dependencies
run: go mod download
- name: Install vips
run: choco install vips
- name: Install libvips
run: |
curl -L -o vips.tar.gz https://github.com/libvips/libvips/releases/download/v8.12.1/vips-8.12.1-win64-web.tar.gz
tar xvf vips.tar.gz
echo "$PWD/vips-8.12.1/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Build Test
run: |
cd src/main
Expand Down

0 comments on commit 811363d

Please sign in to comment.