Skip to content

Install and Cache OpenCV #2

Install and Cache OpenCV

Install and Cache OpenCV #2

Workflow file for this run

name: RocBuild test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
ninjaVersion: "^1.12.1"
- name: Cache OpenCV
uses: UrielCh/opencv-cache-action@V1
with:
branch: 4.x
BUILD_LIST: "core,imgproc,imgcodecs,videio"
NO_CONTRIB: "true"
DO_SHRINK: "true"
- name: Test
run: python test.py
build_windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
ninjaVersion: "^1.12.1"
- name: "Enter Visual Studio Developer Command Prompt"
uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64
- name: Test
run: python test.py
build_macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
ninjaVersion: "^1.12.1"
- name: Test
run: python test.py