diff --git a/.github/workflows/linux-gpu-x64-build.yml b/.github/workflows/linux-gpu-x64-build.yml index 027643acc..8a2463ad7 100644 --- a/.github/workflows/linux-gpu-x64-build.yml +++ b/.github/workflows/linux-gpu-x64-build.yml @@ -96,7 +96,7 @@ jobs: bash -c " \ ${{ env.PYTHON_EXECUTABLE }} -m pip install requests && \ ${{ env.PYTHON_EXECUTABLE }} -m pip install wheel && \ - ${{ env.PYTHON_EXECUTABLE }} build.py --use_cuda --cuda_home=/usr/local/cuda-12.2 --parallel --config=Debug --cmake_extra_defines=\"MANYLINUX=ON\"" + ${{ env.PYTHON_EXECUTABLE }} build.py --use_cuda --cuda_home=/usr/local/cuda-12.2 --parallel --config=Debug" - name: Use Dummy HuggingFace Token run: | diff --git a/.github/workflows/mac-cpu-arm64-build.yml b/.github/workflows/mac-cpu-arm64-build.yml index 117243820..e0f7bfd62 100644 --- a/.github/workflows/mac-cpu-arm64-build.yml +++ b/.github/workflows/mac-cpu-arm64-build.yml @@ -92,18 +92,18 @@ jobs: run: | export ORTGENAI_LOG_ORT_LIB=1 cd test/csharp - dotnet test /p:Configuration=Release /p:NativeBuildOutputDir="../../build/MacOS/Release" --verbosity normal + dotnet test /p:Configuration=Release /p:NativeBuildOutputDir="../../build/MacOS/Release/Release" --verbosity normal - name: Build the Java API and Run the Java Tests run: | set -e -x source genai-macos-venv/bin/activate python3 build.py --config=Release --build_java --parallel --cmake_generator "Unix Makefiles" - dotnet test /p:Configuration=Release /p:NativeBuildOutputDir="../../build/MacOS/Release" --verbosity normal + dotnet test /p:Configuration=Release /p:NativeBuildOutputDir="../../build/MacOS/Release/Release" --verbosity normal - name: Run tests run: | set -e -x export ORTGENAI_LOG_ORT_LIB=1 - export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$GITHUB_WORKSPACE/build/MacOS/Release - ./build/MacOS/Release/unit_tests + export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$GITHUB_WORKSPACE/build/MacOS/Release/Release + ./build/MacOS/Release/Release/unit_tests