Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snippets] Try to investigate MatMulTransposeB i8i8 test failures #25844

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
64 changes: 32 additions & 32 deletions .github/workflows/job_build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
shell: bash
env:
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
CMAKE_BUILD_TYPE: 'Release'
CMAKE_BUILD_TYPE: 'Debug'
CMAKE_CXX_COMPILER_LAUNCHER: sccache
CMAKE_C_COMPILER_LAUNCHER: sccache
SCCACHE_IGNORE_SERVER_IO_ERROR: 1
Expand All @@ -85,10 +85,10 @@ jobs:
INSTALL_WHEELS_DIR: /__w/openvino/openvino/install/wheels
DEVELOPER_PACKAGE_DIR: /__w/openvino/openvino/developer_package_install
BUILD_DIR: /__w/openvino/openvino/openvino_build
SCCACHE_AZURE_KEY_PREFIX: ${{ inputs.os }}_${{ inputs.arch }}_Release
SCCACHE_AZURE_KEY_PREFIX: ${{ inputs.os }}_${{ inputs.arch }}_Debug
ARTIFACTS_SHARE: "/mount/build-artifacts"
MANIFEST_PATH: '/__w/openvino/openvino/manifest.yml'
PRODUCT_TYPE: public_linux_${{ inputs.os }}_${{ inputs.arch }}_release
PRODUCT_TYPE: public_linux_${{ inputs.os }}_${{ inputs.arch }}_debug
steps:
- name: Clone OpenVINO
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -115,17 +115,17 @@ jobs:
submodules: 'true'
ref: ${{ env.TARGET_BRANCH }}

- name: Generate product manifest and set CI_BUILD_NUMBER & CI_BUILD_DEV_TAG
id: create_manifest
uses: ./openvino/.github/actions/create_manifest
with:
repos: |
${{ env.OPENVINO_REPO }}
${{ env.OPENVINO_CONTRIB_REPO }}
product_type: ${{ env.PRODUCT_TYPE }}
target_arch: ${{ inputs.arch }}
build_type: 'release'
save_to: ${{ env.MANIFEST_PATH }}
# - name: Generate product manifest and set CI_BUILD_NUMBER & CI_BUILD_DEV_TAG
# id: create_manifest
# uses: ./openvino/.github/actions/create_manifest
# with:
# repos: |
# ${{ env.OPENVINO_REPO }}
# ${{ env.OPENVINO_CONTRIB_REPO }}
# product_type: ${{ env.PRODUCT_TYPE }}
# target_arch: ${{ inputs.arch }}
# build_type: 'debug'
# save_to: ${{ env.MANIFEST_PATH }}

#
# Print system info
Expand Down Expand Up @@ -327,21 +327,21 @@ jobs:
mkdir deb && mv *.deb deb/
popd

- name: Store artifacts to a shared drive
id: store_artifacts
if: ${{ always() }}
uses: ./openvino/.github/actions/store_artifacts
with:
artifacts: |
${{ env.BUILD_DIR }}/openvino_package.tar.gz
${{ env.BUILD_DIR }}/openvino_developer_package.tar.gz
${{ env.BUILD_DIR }}/openvino_tests.tar.gz
${{ env.BUILD_DIR }}/deb
${{ env.MANIFEST_PATH }}
${{ env.STORE_JS == 'true' && format('{0}/openvino_js_package.tar.gz', env.BUILD_DIR) || '' }}
${{ env.STORE_WHEELS == 'true' && format('{0}/wheels', env.INSTALL_WHEELS_DIR) || '' }}
storage_dir: ${{ env.PRODUCT_TYPE }}
storage_root: ${{ env.ARTIFACTS_SHARE }}
env:
STORE_WHEELS: ${{ inputs.os != 'debian_10' && inputs.arch != 'arm' }}
STORE_JS: ${{ fromJSON(inputs.affected-components).JS_API && inputs.build-js }}
# - name: Store artifacts to a shared drive
# id: store_artifacts
# if: ${{ always() }}
# uses: ./openvino/.github/actions/store_artifacts
# with:
# artifacts: |
# ${{ env.BUILD_DIR }}/openvino_package.tar.gz
# ${{ env.BUILD_DIR }}/openvino_developer_package.tar.gz
# ${{ env.BUILD_DIR }}/openvino_tests.tar.gz
# ${{ env.BUILD_DIR }}/deb
# ${{ env.MANIFEST_PATH }}
# ${{ env.STORE_JS == 'true' && format('{0}/openvino_js_package.tar.gz', env.BUILD_DIR) || '' }}
# ${{ env.STORE_WHEELS == 'true' && format('{0}/wheels', env.INSTALL_WHEELS_DIR) || '' }}
# storage_dir: ${{ env.PRODUCT_TYPE }}
# storage_root: ${{ env.ARTIFACTS_SHARE }}
# env:
# STORE_WHEELS: ${{ inputs.os != 'debian_10' && inputs.arch != 'arm' }}
# STORE_JS: ${{ fromJSON(inputs.affected-components).JS_API && inputs.build-js }}
Loading
Loading