Changes from upstream/master #1571
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code snippets | |
on: | |
push: | |
paths: | |
- '.github/workflows/code_snippets.yml' | |
- 'docs/snippets/**' | |
branches: | |
- 'master' | |
- 'releases/**' | |
pull_request: | |
paths: | |
- '.github/workflows/code_snippets.yml' | |
- 'docs/snippets/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
Build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-22.04', 'macos-latest', 'windows-latest'] | |
runs-on: ${{ matrix.os }} | |
if: ${{ github.repository_owner == 'openvinotoolkit' }} | |
steps: | |
- name: Clone OpenVINO | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
submodules: 'true' | |
- name: Install OpenCL | |
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2 | |
if: runner.os == 'Linux' | |
with: | |
packages: ocl-icd-opencl-dev opencl-headers | |
version: 3.0 | |
- name: Install scons | |
if: runner.os == 'macOS' | |
run: brew install scons | |
- name: CMake configure | |
run: cmake -DCMAKE_BUILD_TYPE=Release -DTHREADING=SEQ -B build | |
- name: Build snippets | |
if: ${{ runner.os == 'Linux' || runner.os == 'macOS'}} | |
run: cmake --build build --target openvino_docs_snippets --parallel $(nproc) | |
- name: Build snippets Windows | |
if: ${{ runner.os == 'Windows'}} | |
shell: pwsh | |
run: cmake --build build --target openvino_docs_snippets --parallel $ENV:NUMBER_OF_PROCESSORS | |