diff --git a/.github/workflows/build_ovep.yml b/.github/workflows/build_ovep.yml index 8e32fea884977..deff65200b916 100644 --- a/.github/workflows/build_ovep.yml +++ b/.github/workflows/build_ovep.yml @@ -31,5 +31,5 @@ jobs: cd w_openvino_toolkit_windows_2024.3.0.16041.1e3b88e4e3f_x86_64 call setupvars.bat cd ../../ - call build.bat --build --update --config Release --cmake_generator "Visual Studio 17 2022" --use_openvino --build_shared_lib --skip_tests --parallel --compile_no_warning_as_error + call build.bat --build --update --config Release --cmake_generator "Visual Studio 17 2022" --use_openvino --build_shared_lib --parallel --enable_pybind shell: cmd diff --git a/.github/workflows/internal_ci_ovep.yml b/.github/workflows/internal_ci_ovep.yml new file mode 100644 index 0000000000000..7552316c5d5b3 --- /dev/null +++ b/.github/workflows/internal_ci_ovep.yml @@ -0,0 +1,36 @@ +name : Trigger Internal ci + +on: + push: + branches: + - '**' # Triggers on push to any branch + pull_request: + branches: + - '**' # Triggers on a PR to any branch + +jobs: + build: + + runs-on: ubuntu-latest + env: + BUILD_SOURCESDIRECTORY: ${{ github.workspace }} + BUILD_BINARIESDIRECTORY: ${{ github.workspace }}/build + steps: + - uses: actions/checkout@v4 #checkout to your repository + + - name: Set up Python + uses: actions/setup-python@v4 # Use the setup-python action + 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 + run: | + cd tools/ci_build/github/linux/ + dir + ./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--config RelWithDebInfo --use_openvino CPU --build_wheel --build_shared_lib --parallel --enable_pybind " + shell: bash