Bazel build fixes. #2192
Workflow file for this run
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
# SPDX-License-Identifier: BSD-3-Clause | |
# Copyright (c) Contributors to the OpenEXR Project. | |
# | |
# GitHub Actions workflow file | |
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: CI | |
# Run on all changes except: | |
# - doc file changes | |
# - changes to the website, *except* for "website/src", since that | |
# code needs validation. The website has a separate workflow | |
# - changes to the bazel config, since it has its own workflow | |
# - changes to the python bindings | |
# - changes to workflows other than this one | |
on: | |
push: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!website/**' | |
- 'website/src/**' | |
- '!bazel/**' | |
- '!src/wrappers/**' | |
- '!.github/workflows/**' | |
- '.github/workflows/ci_workflow.yml' | |
pull_request: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!website/**' | |
- 'website/src/**' | |
- '!bazel/**' | |
- '!src/wrappers/**' | |
- '!.github/workflows/**' | |
- '.github/workflows/ci_workflow.yml' | |
permissions: | |
contents: read | |
jobs: | |
# Linux jobs run in Docker containers, so the latest OS version is OK. macOS | |
# and Windows jobs need to be locked to specific virtual environment | |
# versions to mitigate issues from OS updates, and will require maintenance | |
# as OS versions are retired. | |
# | |
# GH Actions (Free plan) supports 20 concurrent jobs, with 5 concurrent macOS | |
# jobs. This workflow tries to utilize (but not exceed) that budget to | |
# promote timely CI. | |
# --------------------------------------------------------------------------- | |
# Linux | |
# --------------------------------------------------------------------------- | |
# TODO: Add ARM build. Add sanitize build. | |
linux: | |
name: 'Linux ${{ matrix.label }}VFXP-${{ matrix.vfx-cy }} centos7 | |
<${{ matrix.compiler-desc }}, | |
C++${{ matrix.cxx-standard }}, | |
config=${{ matrix.build-type }}, | |
shared=${{ matrix.build-shared }}, | |
threads=${{ matrix.threads-enabled }}>' | |
# GH-hosted VM. The build runs in CentOS 7 'container' defined below. | |
runs-on: ubuntu-latest | |
container: | |
# DockerHub: https://hub.docker.com/u/aswf | |
# Source: https://github.com/AcademySoftwareFoundation/aswf-docker | |
image: aswf/ci-openexr:${{ matrix.vfx-cy }} | |
strategy: | |
matrix: | |
build: [1, 2, 3, 4, 5, 6, 7, 8, 9] | |
include: | |
# ------------------------------------------------------------------- | |
# VFX CY2024 - GCC | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 1 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc11.2.1 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2024 | |
exclude-tests: | |
# Shared, Release, Threads OFF | |
- build: 2 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc11.2.1 | |
label: | |
threads-enabled: 'OFF' | |
vfx-cy: 2024 | |
exclude-tests: | |
# Shared, Debug | |
- build: 3 | |
build-type: Debug | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc11.2.1 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2024 | |
exclude-tests: | |
# Static, Release | |
- build: 4 | |
build-type: Release | |
build-shared: 'OFF' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc11.2.1 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2024 | |
exclude-tests: | |
# ------------------------------------------------------------------- | |
# VFX CY2024 - Clang 15.0 | |
# ------------------------------------------------------------------- | |
# Release | |
- build: 5 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: clang++ | |
cc-compiler: clang | |
compiler-desc: clang15.0 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2024 | |
exclude-tests: | |
# ------------------------------------------------------------------- | |
# VFX CY2024 - Clang 14.0 | |
# ------------------------------------------------------------------- | |
# Release | |
- build: 6 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: clang++ | |
cc-compiler: clang | |
compiler-desc: clang14.0 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2024 | |
exclude-tests: | |
# ------------------------------------------------------------------- | |
# VFX CY2023 - GCC | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 7 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc11.2.1 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2023 | |
exclude-tests: | |
# ------------------------------------------------------------------- | |
# VFX CY2022 - GCC, Release | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 8 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc9.3.1 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2022 | |
exclude-tests: | |
# ------------------------------------------------------------------- | |
# VFX CY2021 - GCC, Release | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 9 | |
build-type: Release | |
build-shared: 'ON' | |
cxx-standard: 17 | |
cxx-compiler: g++ | |
cc-compiler: gcc | |
compiler-desc: gcc9.3.1 | |
label: | |
threads-enabled: 'ON' | |
vfx-cy: 2021 | |
exclude-tests: | |
env: | |
CXX: ${{ matrix.cxx-compiler }} | |
CC: ${{ matrix.cc-compiler }} | |
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16 | |
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Create build directories | |
run: | | |
mkdir _install | |
mkdir _build | |
mkdir _examples | |
- name: Configure | |
run: | | |
cmake -B _build -S . \ | |
-DCMAKE_INSTALL_PREFIX=_install \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \ | |
-DOPENEXR_CXX_STANDARD=${{ matrix.cxx-standard }} \ | |
-DCMAKE_CXX_FLAGS=${{ matrix.cxx-flags }} \ | |
-DCMAKE_VERBOSE_MAKEFILE:BOOL='OFF' \ | |
-DBUILD_SHARED_LIBS=${{ matrix.build-shared }} \ | |
-DOPENEXR_INSTALL_TOOLS='ON' \ | |
-DOPENEXR_INSTALL_DOCS='OFF' \ | |
-DOPENEXR_RUN_FUZZ_TESTS='OFF' \ | |
-DOPENEXR_ENABLE_THREADING=${{ matrix.threads-enabled }} | |
- name: Build | |
run: | | |
cmake --build _build \ | |
--target install \ | |
--config ${{ matrix.build-type }} | |
- name: Validate | |
run: | | |
share/ci/scripts/linux/validate_openexr_libs.sh _install | |
- name: Test | |
run: | | |
ctest -T Test ${{ matrix.exclude-tests }} \ | |
-C ${{ matrix.build-type }} \ | |
--timeout 7200 \ | |
--output-on-failure \ | |
-VV | |
working-directory: _build | |
# --------------------------------------------------------------------------- | |
# macOS | |
# --------------------------------------------------------------------------- | |
# TODO: Add ARM64/x86_64 (universal 2) build | |
macos: | |
name: 'Mac VFXP-${{ matrix.vfx-cy }} macos-${{ matrix.osver }} | |
<${{ matrix.compiler-desc }}, | |
C++${{ matrix.cxx-standard }}, | |
config=${{ matrix.build-type }}, | |
shared=${{ matrix.build-shared }}, | |
cxx=${{ matrix.cxx-standard }}, | |
threads=${{ matrix.threads-enabled }}>' | |
runs-on: macos-${{ matrix.osver }} | |
strategy: | |
matrix: | |
build: [1, 2, 3, 4, 5, 6] | |
include: | |
# ------------------------------------------------------------------- | |
# MacOS 14 | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 1 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'ON' | |
compiler-desc: AppleClang11.0 | |
cxx-standard: 17 | |
osver: 14 | |
exclude-tests: | |
vfx-cy: 24 | |
# Shared, Release, Threads OFF | |
- build: 2 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'OFF' | |
compiler-desc: AppleClang11.0 | |
cxx-standard: 17 | |
osver: 14 | |
exclude-tests: | |
vfx-cy: 24 | |
# Static, Release | |
- build: 3 | |
build-type: Release | |
build-shared: 'OFF' | |
threads-enabled: 'ON' | |
compiler-desc: AppleClang11.0 | |
cxx-standard: 17 | |
osver: 14 | |
exclude-tests: | |
vfx-cy: 24 | |
# Shared, Debug | |
- build: 4 | |
build-type: Debug | |
build-shared: 'ON' | |
threads-enabled: 'ON' | |
compiler-desc: AppleClang11.0 | |
cxx-standard: 17 | |
osver: 14 | |
exclude-tests: | |
vfx-cy: 24 | |
# ------------------------------------------------------------------- | |
# MacOS 13 | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 5 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'ON' | |
compiler-desc: AppleClang11.0 | |
cxx-standard: 17 | |
osver: 13 | |
exclude-tests: | |
vfx-cy: 23 | |
# ------------------------------------------------------------------- | |
# MacOS 12 | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 6 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'ON' | |
compiler-desc: AppleClang10.5 | |
cxx-standard: 17 | |
osver: 12 | |
exclude-tests: | |
vfx-cy: 23 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Create build directories | |
run: | | |
mkdir _install | |
mkdir _build | |
mkdir _examples | |
- name: Configure | |
run: | | |
cmake .. \ | |
-DCMAKE_INSTALL_PREFIX=../_install \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \ | |
-DOPENEXR_CXX_STANDARD=${{ matrix.cxx-standard }} \ | |
-DCMAKE_CXX_FLAGS=${{ matrix.cxx-flags }} \ | |
-DCMAKE_VERBOSE_MAKEFILE:BOOL='OFF' \ | |
-DBUILD_SHARED_LIBS=${{ matrix.build-shared }} \ | |
-DOPENEXR_INSTALL_TOOLS='ON' \ | |
-DOPENEXR_INSTALL_DOCS='OFF' \ | |
-DOPENEXR_RUN_FUZZ_TESTS='OFF' | |
working-directory: _build | |
- name: Build | |
run: | | |
cmake --build . \ | |
--target install \ | |
--config ${{ matrix.build-type }} | |
working-directory: _build | |
- name: Examples | |
run: | | |
# Make sure we can build the examples when configured as a | |
# standalone application linking against the just-installed | |
# OpenEXR library. | |
cmake ../src/examples \ | |
-DCMAKE_PREFIX_PATH=../../_install \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \ | |
-DCMAKE_CXX_STANDARD=${{ matrix.cxx-standard }} \ | |
-DCMAKE_CXX_FLAGS=${{ matrix.cxx-flags }} | |
cmake --build . \ | |
--config ${{ matrix.build-type }} | |
# Confirm the examples program runs | |
./bin/OpenEXRExamples | |
working-directory: _examples | |
- name: Test | |
run: | | |
ctest -T Test ${{matrix.exclude-tests }} \ | |
-C ${{matrix.build-type}} \ | |
--timeout 7200 \ | |
--output-on-failure \ | |
-VV | |
working-directory: _build | |
# --------------------------------------------------------------------------- | |
# Windows | |
# --------------------------------------------------------------------------- | |
# TODO: Debug mode is catatonically slow under windows | |
windows: | |
name: 'Windows VFXP-${{ matrix.vfx-cy }} | |
<${{ matrix.compiler-desc }}, | |
config=${{ matrix.build-type }}, | |
shared=${{ matrix.build-shared }}, | |
cxx=${{ matrix.cxx-standard }}, | |
threads=${{ matrix.threads-enabled }}>' | |
runs-on: windows-${{ matrix.osver }} | |
strategy: | |
matrix: | |
build: [1, 2, 3, 4, 5] | |
include: | |
# ------------------------------------------------------------------- | |
# VFX CY2023 - C++17 - Windows 2022 runner - MSVC 2022 (17.5) | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 1 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'ON' | |
compiler-desc: msvc17.5 | |
cxx-standard: 17 | |
vfx-cy: 2023 | |
exclude-tests: '' | |
osver: 2022 | |
# Shared, Release, Threads OFF | |
- build: 2 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'OFF' | |
compiler-desc: msvc17.5 | |
cxx-standard: 17 | |
vfx-cy: 2023 | |
exclude-tests: '' | |
osver: 2022 | |
# Static, Release | |
- build: 3 | |
build-type: Release | |
build-shared: 'OFF' | |
threads-enabled: 'ON' | |
compiler-desc: msvc17.5 | |
cxx-standard: 17 | |
vfx-cy: 2023 | |
exclude-tests: '' | |
osver: 2022 | |
# ------------------------------------------------------------------- | |
# VFX CY2022 - C++17 - Windows 2019 runner - MSVC 2019 (16.11) | |
# ------------------------------------------------------------------- | |
# Shared, Release | |
- build: 4 | |
build-type: Release | |
build-shared: 'ON' | |
threads-enabled: 'ON' | |
compiler-desc: msvc16.11 | |
cxx-standard: 17 | |
vfx-cy: 2022 | |
exclude-tests: '' | |
osver: 2019 | |
# Static, Release | |
- build: 5 | |
build-type: Release | |
build-shared: 'OFF' | |
threads-enabled: 'ON' | |
compiler-desc: msvc16.11 | |
cxx-standard: 17 | |
vfx-cy: 2022 | |
exclude-tests: '' | |
osver: 2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Create build directories | |
run: | | |
mkdir _install | |
mkdir _build | |
mkdir _examples | |
shell: bash | |
## - name: Install Dependences | |
## run: | | |
## share/ci/scripts/windows/install_python.ps1 ${{ matrix.python-version }} $HOME | |
## share/ci/scripts/windows/install_boost.ps1 ${{ matrix.boost-version }} $HOME 3.8 | |
## share/ci/scripts/windows/install_zlib.ps1 ${{ matrix.zlib-version }} $HOME | |
## shell: powershell | |
- name: Configure | |
run: | | |
cmake .. \ | |
-DCMAKE_INSTALL_PREFIX=../_install \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \ | |
-DOPENEXR_CXX_STANDARD=${{ matrix.cxx-standard }} \ | |
-DCMAKE_CXX_FLAGS=${{ matrix.cxx-flags }} \ | |
-DCMAKE_VERBOSE_MAKEFILE:BOOL='OFF' \ | |
-DBUILD_SHARED_LIBS=${{ matrix.build-shared }} \ | |
-DOPENEXR_INSTALL_TOOLS='ON' \ | |
-DOPENEXR_INSTALL_DOCS='OFF' \ | |
-DOPENEXR_RUN_FUZZ_TESTS='OFF' | |
shell: bash | |
working-directory: _build | |
- name: Build | |
run: | | |
cmake --build . \ | |
--target install \ | |
--config ${{ matrix.build-type }} | |
shell: bash | |
working-directory: _build | |
## - name: Examples | |
## run: | | |
## # Make sure we can build the examples when configured as a | |
## # standalone application linking against the just-installed | |
## # OpenEXR library. | |
## cmake ../src/examples \ | |
## -DCMAKE_PREFIX_PATH=../../_install \ | |
## -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \ | |
## -DCMAKE_CXX_STANDARD=${{ matrix.cxx-standard }} \ | |
## -DCMAKE_CXX_FLAGS=${{ matrix.cxx-flags }} | |
## cmake --build . \ | |
## --config ${{ matrix.build-type }} | |
## # Confirm the examples program runs | |
## ./bin/OpenEXRExamples | |
## shell: bash | |
## working-directory: _examples | |
- name: Test | |
run: | | |
ctest -T Test ${{ matrix.exclude-tests }} \ | |
-C ${{ matrix.build-type }} \ | |
--timeout 7200 \ | |
--output-on-failure \ | |
-VV | |
shell: bash | |
working-directory: _build | |