From e85411a5fd68359e63347f42046d095a2f6bdbc1 Mon Sep 17 00:00:00 2001 From: jatinwadhwa921 <110383850+jatinwadhwa921@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:37:59 +0530 Subject: [PATCH] Updated Internal CI (#581) --- .github/workflows/internal_ci.yml | 49 +++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/internal_ci.yml diff --git a/.github/workflows/internal_ci.yml b/.github/workflows/internal_ci.yml new file mode 100644 index 0000000000000..3d0a8d8bcaf42 --- /dev/null +++ b/.github/workflows/internal_ci.yml @@ -0,0 +1,49 @@ +name : Internal CI + +on: + pull_request_target: + branches: + - '**' # Triggers on a PR to any Branch + +permissions: + contents: read + pull-requests: read + +jobs: + build: + + if: github.event.pull_request.draft == false + runs-on: [self-hosted, Linux, X64] # Runs on a Lunar lake + env: + BUILD_SOURCESDIRECTORY: ${{ github.workspace }} + BUILD_BINARIESDIRECTORY: ${{ github.workspace }}/build + + steps: + - name: Check PR Author Authorization + run: | + if [[ "${{ github.event.pull_request.head.repo.full_name }}" != "${{ github.repository }}" ]]; then + echo "PR is from a fork: ${{ github.event.pull_request.head.repo.full_name }}" + fi + + - name: Checkout PR Branch + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + fetch-depth: 1 # 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 "