From 51ef96ed83171b04ef4db8c23a3f11a4f0901263 Mon Sep 17 00:00:00 2001 From: Ella Charlaix <80481427+echarlaix@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:19:38 +0200 Subject: [PATCH] Add ipex openvino and inc tests when pushing a release branch (#755) --- .github/workflows/test_inc.yml | 7 +++++-- .github/workflows/test_ipex.yml | 7 +++++-- .github/workflows/test_openvino.yml | 7 +++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test_inc.yml b/.github/workflows/test_inc.yml index 81d102bc01..7b87a20d0c 100644 --- a/.github/workflows/test_inc.yml +++ b/.github/workflows/test_inc.yml @@ -4,9 +4,12 @@ name: Intel Neural Compressor - Test on: push: - branches: [ main ] + branches: + - main + - v*-release pull_request: - branches: [ main ] + branches: + - main concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/.github/workflows/test_ipex.yml b/.github/workflows/test_ipex.yml index 7bb8947ab7..96ef047aaf 100644 --- a/.github/workflows/test_ipex.yml +++ b/.github/workflows/test_ipex.yml @@ -4,9 +4,12 @@ name: Intel IPEX - Test on: push: - branches: [ main ] + branches: + - main + - v*-release pull_request: - branches: [ main ] + branches: + - main concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/.github/workflows/test_openvino.yml b/.github/workflows/test_openvino.yml index 0411ca81f7..a0bc916c75 100644 --- a/.github/workflows/test_openvino.yml +++ b/.github/workflows/test_openvino.yml @@ -4,9 +4,12 @@ name: OpenVINO - Test on: push: - branches: [ main ] + branches: + - main + - v*-release pull_request: - branches: [ main ] + branches: + - main concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}