diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ae668e0..2f147e19 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -157,7 +157,7 @@ jobs: vcpkg_cache: "/Users/runner/.cache/vcpkg/archives" vcpkg_logs: "/usr/local/share/vcpkg/buildtrees/**/*.log" - - os: "macos-14" + - os: "macos-13" triplet: "arm64-osx-dynamic-release" arch: arm64 vcpkg_cache: "/Users/runner/.cache/vcpkg/archives" @@ -196,7 +196,7 @@ jobs: - name: Install vcpkg and checkout specific version uses: lukka/run-vcpkg@v11 with: - vcpkgDirectory: '${{ github.workspace }}/vcpkg' + vcpkgDirectory: "${{ github.workspace }}/vcpkg" vcpkgGitCommitId: 0857a4b08c14030bbe41e80accb2b1fddb047a74 - name: Install GDAL @@ -208,6 +208,14 @@ jobs: vcpkg install --overlay-triplets=./ci/custom-triplets --feature-flags="versions,manifests" --x-manifest-root=./ci --x-install-root=$VCPKG_INSTALLATION_ROOT/installed --debug vcpkg list + # FIXME: remove + - name: Log windows install directory + if: ${{ runner.os == 'Windows' }} + run: | + ls $VCPKG_INSTALLATION_ROOT/installed + ls $VCPKG_INSTALLATION_ROOT/installed/x64-windows-dynamic-release + ls $VCPKG_INSTALLATION_ROOT/installed/x64-windows-dynamic-release/bin + - name: Upload vcpkg build logs if: ${{ failure() }} uses: actions/upload-artifact@v4