forked from AcademySoftwareFoundation/openexr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workaround workflow for vfx 2022/2021
Signed-off-by: Cary Phillips <[email protected]>
- Loading branch information
Showing
1 changed file
with
92 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# 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_old.yml' | ||
pull_request: | ||
paths: | ||
- '**' | ||
- '!**.md' | ||
- '!website/**' | ||
- 'website/src/**' | ||
- '!bazel/**' | ||
- '!src/wrappers/**' | ||
- '!.github/workflows/**' | ||
- '.github/workflows/ci_workflow_old.yml' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
|
||
linux: | ||
name: 'Linux vfx${{ matrix.vfx-cy }}' | ||
runs-on: ubuntu-latest | ||
container: | ||
image: aswf/ci-openexr:${{ matrix.vfx-cy }} | ||
volumes: | ||
- /node20217:/node20217:rw,rshared | ||
- /node20217:/__e/node20:ro,rshared | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
|
||
# Shared, Release | ||
- build: 2022 | ||
vfx-cy: 2022 | ||
|
||
- build: 2021 | ||
vfx-cy: 2021 | ||
|
||
steps: | ||
- name: install nodejs20glibc2.17 | ||
run: | | ||
curl --silent https://unofficial-builds.nodejs.org/download/release/v20.18.1/node-v20.18.1-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217 -f - | ||
- name: Checkout | ||
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | ||
- name: Create build directories | ||
run: | | ||
mkdir _install | ||
mkdir _build | ||
- name: Configure | ||
run: | | ||
cmake -B _build -S . \ | ||
-DCMAKE_INSTALL_PREFIX=_install \ | ||
-DCMAKE_VERBOSE_MAKEFILE:BOOL='ON' | ||
- name: Build | ||
run: | | ||
cmake --build _build \ | ||
--target install \ | ||
--config ${{ matrix.build-type }} | ||
- name: Test | ||
run: | | ||
ctest -T Test ${{ matrix.exclude-tests }} \ | ||
-C ${{ matrix.build-type }} \ | ||
--timeout 7200 \ | ||
--output-on-failure \ | ||
-VV | ||
working-directory: _build | ||
|