From b014776bf40e5c70caaff4e1697ed8fcbf827c4e Mon Sep 17 00:00:00 2001 From: Alina Kladieva Date: Wed, 22 May 2024 16:57:06 +0200 Subject: [PATCH] [GHA] Checkout the latest OneDNN for GPU in nightly (#24534) ### Tickets: - CVS-139627 --- .github/workflows/linux.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5b4e6769cc1..73ac1554962 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -94,6 +94,15 @@ jobs: path: ${{ env.OPENVINO_REPO }} submodules: 'true' + # Ticket: 139627 + - name: Checkout the latest OneDNN for GPU in nightly + if: ${{ github.event_name == 'schedule' }} + working-directory: ${{ env.OPENVINO_REPO }}/src/plugins/intel_gpu/thirdparty/onednn_gpu + run: | + git fetch origin + git checkout main + git rev-parse HEAD + - name: Clone OpenVINO Contrib uses: actions/checkout@v4 with: