diff --git a/.github/workflows/internal_ci.yml b/.github/workflows/internal_ci.yml new file mode 100644 index 0000000000000..c5a1c97aae0d7 --- /dev/null +++ b/.github/workflows/internal_ci.yml @@ -0,0 +1,34 @@ +name : Internal CI + +on: + pull_request: + branches: + - '**' # Triggers on a PR to any Branch + +jobs: + build: + + runs-on: [self-hosted, Linux, X64] # Runs on a Lunar lake + env: + BUILD_SOURCESDIRECTORY: ${{ github.workspace }} + BUILD_BINARIESDIRECTORY: ${{ github.workspace }}/build + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.ref }} # checkout the pr branch + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + + - name: Create build directory + run: | + mkdir -p ${{ env.BUILD_BINARIESDIRECTORY }} + chmod -R 777 ${{ env.BUILD_BINARIESDIRECTORY }} + + - name: Running Internal CI # Trigger Internal CI on the pr branch + run: | + cd tools/ci_build/github/linux/ + dir + ./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.5.0 -x "--config Release --use_openvino CPU --build_wheel --build_shared_lib --parallel " diff --git a/tools/nuget/nupkg.README.md b/tools/nuget/nupkg.README.md index e48480787c7f9..dc2b211e5db7a 100644 --- a/tools/nuget/nupkg.README.md +++ b/tools/nuget/nupkg.README.md @@ -41,6 +41,12 @@ Learn more → [here](https://www.onnxruntime.ai/docs) - https://onnxruntime.ai/docs/execution-providers/QNN-ExecutionProvider.html - CPU Execution Provider +#### Intel.ML.OnnxRuntime.OpenVino + - 64-bit Windows + - OpenVINO Execution Provider + - https://onnxruntime.ai/docs/execution-providers/OpenVINO-ExecutionProvider.html + - CPU Execution Provider + ### Other packages