Skip to content

Commit

Permalink
Update release build script
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturKovacs committed Sep 20, 2023
1 parent bb448a9 commit ff55dff
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:
choco install pkgconfiglite
vcpkg integrate install
echo "set(VCPKG_BUILD_TYPE release)" >> $env:VCPKG_INSTALLATION_ROOT\triplets\x64-windows.cmake
vcpkg install dav1d:x64-windows
vcpkg install --triplet=x64-windows
echo "vcpkg install folder: $(((Get-Command vcpkg.exe | select Source -First 1).source | Get-Item).Directory.FullName)"
$VCPKG_INSTALLATION_ROOT = ((Get-Command vcpkg.exe | select Source -First 1).source | Get-Item).Directory.FullName
$PKG_CONFIG_PATH = "$VCPKG_INSTALLATION_ROOT/installed/x64-windows/lib/pkgconfig"
$PKG_CONFIG_PATH = "$((Resolve-Path ".").Path)/vcpkg_installed/x64-windows/lib/pkgconfig"
$PKG_CONFIG_PATH = $PKG_CONFIG_PATH.replace("\", "/")
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >> $env:GITHUB_ENV
curl -LO "https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.2/LLVM-15.0.2-win64.exe"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

/vcpkg_installed
/target
/.idea
/.vscode
Expand Down
11 changes: 11 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "project",
"version-semver": "1.0.0",
"dependencies": [
{
"name": "dav1d",
"version>=": "1.0.0"
}
],
"builtin-baseline": "a2261f65ea979eebf56074f604776160f0074b09"
}

0 comments on commit ff55dff

Please sign in to comment.