diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 63b3e0e6e6e3..d1a4366da45e 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -131,11 +131,13 @@ jobs: - name: "Run compile_schema.py" run: | + set -e -x # Runner's host triplet should be x64-osx or arm64-osx export FLATC_DIR="${{ github.workspace }}/.build/${{ runner.arch }}-osx/tools/flatbuffers" export PATH="$FLATC_DIR:$PATH" flatc --version python onnxruntime/core/flatbuffers/schema/compile_schema.py --flatc "$(which flatc)" + python onnxruntime/lora/adapter_format/compile_schema.py --flatc "$(which flatc)" - name: "Detect protoc" id: protoc-detect diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d276877b7ad4..8a95e8a7b7b8 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -56,7 +56,6 @@ jobs: uses: lukka/run-vcpkg@v11 with: vcpkgDirectory: "C:/vcpkg" # use VCPKG_INSTALLATION_ROOT of the image - doNotUpdateVcpkg: true runVcpkgInstall: true vcpkgJsonGlob: "cmake/vcpkg.json" vcpkgConfigurationJsonGlob: "cmake/vcpkg-configuration.json" @@ -73,6 +72,7 @@ jobs: flatc --version $FLATC_PATH = Join-Path "$FLATC_DIR" "flatc.exe" python onnxruntime/core/flatbuffers/schema/compile_schema.py --flatc "$FLATC_PATH" + python onnxruntime/lora/adapter_format/compile_schema.py --flatc "$FLATC_PATH" shell: pwsh - name: "Detect protoc" diff --git a/cmake/vcpkg-configuration.json b/cmake/vcpkg-configuration.json index f3525977c7bb..4afc30a3b969 100644 --- a/cmake/vcpkg-configuration.json +++ b/cmake/vcpkg-configuration.json @@ -2,7 +2,7 @@ "default-registry": { "kind": "git", "repository": "https://github.com/Microsoft/vcpkg", - "baseline": "3508985146f1b1d248c67ead13f8f54be5b4f5da" + "baseline": "c82f74667287d3dc386bce81e44964370c91a289" }, "registries": [] }