Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
133 lines
4.3 KiB
YAML
133 lines
4.3 KiB
YAML
name: Samples
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
runner:
|
|
description: 'Machine on which the tests would run'
|
|
type: string
|
|
required: true
|
|
image:
|
|
description: 'Docker image in which the tests would run'
|
|
type: string
|
|
required: false
|
|
default: null
|
|
affected-components:
|
|
description: 'Components that are affected by changes in the commit defined by the Smart CI Action'
|
|
type: string
|
|
required: true
|
|
|
|
jobs:
|
|
Samples:
|
|
runs-on: ${{ inputs.runner }}
|
|
container:
|
|
image: ${{ inputs.image }}
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
env:
|
|
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
|
|
INSTALL_DIR: ${{ github.workspace }}/install
|
|
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
|
|
BUILD_DIR: ${{ github.workspace }}/build
|
|
steps:
|
|
- name: Download OpenVINO package
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: openvino_package
|
|
path: ${{ env.INSTALL_DIR }}
|
|
|
|
- name: Download OpenVINO tests package
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: openvino_tests
|
|
path: ${{ env.INSTALL_TEST_DIR }}
|
|
|
|
# Needed as ${{ github.workspace }} is not working correctly when using Docker
|
|
- name: Setup Variables
|
|
run: |
|
|
echo "INSTALL_DIR=$GITHUB_WORKSPACE/install" >> "$GITHUB_ENV"
|
|
echo "INSTALL_TEST_DIR=$GITHUB_WORKSPACE/install/tests" >> "$GITHUB_ENV"
|
|
echo "BUILD_DIR=$GITHUB_WORKSPACE/build" >> "$GITHUB_ENV"
|
|
|
|
- name: Extract OpenVINO packages
|
|
run: |
|
|
pushd $INSTALL_DIR
|
|
tar -xzf openvino_package.tar.gz -C $INSTALL_DIR
|
|
popd
|
|
pushd $INSTALL_TEST_DIR
|
|
tar -xzf openvino_tests.tar.gz -C $INSTALL_DIR
|
|
popd
|
|
|
|
- name: Install OpenVINO dependencies (Linux)
|
|
if: runner.os == 'Linux'
|
|
run: $INSTALL_DIR/install_dependencies/install_openvino_dependencies.sh -c=core -c=dev -y
|
|
|
|
- name: Install OpenVINO dependencies (mac)
|
|
if: runner.os == 'macOS'
|
|
run: brew install coreutils
|
|
|
|
- name: Fetch setup_python action
|
|
uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: |
|
|
.github/actions/setup_python/action.yml
|
|
sparse-checkout-cone-mode: false
|
|
path: 'openvino'
|
|
|
|
- name: Setup Python 3.11
|
|
uses: ./openvino/.github/actions/setup_python
|
|
with:
|
|
version: '3.11'
|
|
should-setup-pip-paths: 'false'
|
|
self-hosted-runner: ${{ runner.os == 'Linux' }}
|
|
|
|
- name: Build cpp samples - GCC
|
|
run: $INSTALL_DIR/samples/cpp/build_samples.sh -i $INSTALL_DIR -b $BUILD_DIR/cpp_samples
|
|
env:
|
|
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
|
|
|
|
- name: Build cpp samples - Clang
|
|
if: runner.os == 'Linux'
|
|
run: |
|
|
apt-get install -y clang
|
|
$INSTALL_DIR/samples/cpp/build_samples.sh -i $INSTALL_DIR -b $BUILD_DIR/cpp_samples_clang
|
|
env:
|
|
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
|
|
CC: clang
|
|
CXX: clang++
|
|
|
|
- name: Build c samples
|
|
run: $INSTALL_DIR/samples/c/build_samples.sh -i $INSTALL_DIR -b $BUILD_DIR/c_samples
|
|
env:
|
|
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'
|
|
|
|
#
|
|
# Tests
|
|
#
|
|
|
|
- name: Samples tests
|
|
if: fromJSON(inputs.affected-components).samples.test
|
|
run: |
|
|
export WORKSPACE=$INSTALL_DIR
|
|
export IE_APP_PATH=$INSTALL_DIR/samples_bin
|
|
export IE_APP_PYTHON_PATH=$INSTALL_DIR/samples/python
|
|
export SHARE=$INSTALL_TEST_DIR/smoke_tests/samples_smoke_tests_data
|
|
|
|
python3 -m pip install --ignore-installed PyYAML -r $INSTALL_TEST_DIR/smoke_tests/requirements.txt
|
|
export LD_LIBRARY_PATH=${IE_APP_PATH}:$LD_LIBRARY_PATH
|
|
|
|
source ${INSTALL_DIR}/setupvars.sh
|
|
|
|
python3 -m pytest -sv $INSTALL_TEST_DIR/smoke_tests \
|
|
--env_conf $INSTALL_TEST_DIR/smoke_tests/env_config.yml \
|
|
--junitxml=$INSTALL_TEST_DIR/TEST-SamplesSmokeTests.xml
|
|
|
|
- name: Upload Test Results
|
|
uses: actions/upload-artifact@v3
|
|
if: ${{ !cancelled() }}
|
|
with:
|
|
name: test-results-samples
|
|
path: ${{ env.INSTALL_TEST_DIR }}/TEST*.xml
|
|
if-no-files-found: 'warn'
|