fix CI #35
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
name: Build and test | |
# Run the jobs for pushes and pull requests targetting main branch. | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
- 'images/**' | |
- 'examples/**' | |
- 'docs/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
- 'images/**' | |
- 'examples/**' | |
- 'docs/**' | |
jobs: | |
# A build job matrix based on pre-built USD binaries provided by NVIDIA. | |
nvidia-usd-binaries-linux-build: | |
strategy: | |
matrix: | |
usdVersion: | |
- 23.05 | |
include: | |
- usdVersion: 23.05 | |
usdVersionUrl: 21-05 | |
pythonVersion: '3.10' | |
USE_PYTHON_3: ON | |
buildType: Release | |
buildTests: 'ON' | |
runs-on: ubuntu-22.04 | |
name: 'Ubuntu 22.04 NVIDIA Pre-built Binaries | |
<USD Version=${{ matrix.usdVersion }}, | |
Python Version=${{ matrix.pythonVersion }}, | |
Build type:${{ matrix.buildType }}, | |
Enable tests=${{ matrix.build-tests }}>' | |
steps: | |
- name: Install dependencies (Linux) | |
run: sudo apt-get install cmake python${{ matrix.pythonVersion }} python${{ matrix.pythonVersion }}-dev | |
- uses: actions/checkout@v4 | |
- name: Download and extract pre-built USD binaries | |
run: | | |
curl -L -o /tmp/usd-${{ matrix.usdVersion }}.7z https://developer.nvidia.com/downloads/USD/usd_binaries/23.05/[email protected]+v23.05.b53573ea.zip | |
mkdir -p /tmp/usd-${{ matrix.usdVersion }} | |
7z x /tmp/usd-${{ matrix.usdVersion }}.7z -o/tmp/usd-${{ matrix.usdVersion }} | |
- name: Create build directories | |
run: | | |
mkdir _build | |
mkdir _install | |
- name: Configure | |
run: | | |
cmake -DUSD_ROOT="/tmp/usd-${{ matrix.usdVersion }}/" \ | |
-DTBB_ROOT="/tmp/usd-${{ matrix.usdVersion }}/" \ | |
-DBoost_ROOT="/tmp/usd-${{ matrix.usdVersion }}/" \ | |
-DUSE_PYTHON_3=${{ matrix.USE_PYTHON_3 }} \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.buildType }} \ | |
-DBUILD_TESTING=${{ matrix.buildTests }} \ | |
-DCMAKE_CXX_FLAGS="-D_GLIBCXX_USE_CXX11_ABI=0" \ | |
-DCMAKE_INSTALL_PREFIX=../_install \ | |
../usd | |
working-directory: _build | |
- name: Build | |
run: | | |
cmake --build . \ | |
--verbose \ | |
--target install \ | |
--config ${{ matrix.buildType }} | |
working-directory: _build | |
- name: Test | |
run: ctest -VV --output-on-failure -C ${{ matrix.buildType }} | |
working-directory: _build | |
# A build job matrix based on pre-built USD binaries provided by NVIDIA on Windows. | |
nvidia-usd-binaries-windows-build: | |
strategy: | |
matrix: | |
usdVersion: | |
- 24.05 | |
include: | |
- usdVersion: 24.05 | |
usdVersionUrl: 21-05 | |
pythonVersion: '3.10' | |
USE_PYTHON_3: ON | |
buildType: Release | |
buildTests: ON | |
runs-on: windows-2019 | |
name: 'Windows 2019 NVIDIA Pre-built Binaries | |
<USD Version=${{ matrix.usdVersion }}, | |
Python Version=${{ matrix.pythonVersion }}, | |
Build type:${{ matrix.buildType }}, | |
Enable tests=${{ matrix.build-tests }}>' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.pythonVersion }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.pythonVersion }} | |
- name: Download and extract pre-built USD binaries | |
run: | | |
Invoke-WebRequest https://developer.nvidia.com/downloads/usd/usd_binaries/24.05/[email protected]+release.2864f3d0.zip -OutFile $env:TEMP/usd-${{ matrix.usdVersion }}.zip | |
mkdir -Force $env:TEMP/usd-${{ matrix.usdVersion }} | |
7z x $env:TEMP/usd-${{ matrix.usdVersion }}.zip $("-o" + "$env:TEMP" + "\usd-${{ matrix.usdVersion }}") -y | |
- name: Create build directories | |
run: | | |
mkdir -Force _build | |
mkdir -Force _install | |
- name: Configure | |
run: | | |
cmake -DUSD_ROOT="$env:TEMP/usd-${{ matrix.usdVersion }}" ` | |
-DTBB_ROOT="$env:TEMP/usd-${{ matrix.usdVersion }}" ` | |
-DBoost_ROOT="$env:TEMP/usd-${{ matrix.usdVersion }}" ` | |
-DUSE_PYTHON_3=${{ matrix.USE_PYTHON_3 }} ` | |
-DCMAKE_BUILD_TYPE=${{ matrix.buildType }} ` | |
-DBUILD_TESTING=${{ matrix.buildTests }} ` | |
-DCMAKE_INSTALL_PREFIX="../_install" ` | |
-G "Visual Studio 16 2019" ` | |
../usd | |
working-directory: "_build" | |
- name: Build | |
run: | | |
cmake --build . ` | |
--verbose ` | |
--config ${{ matrix.buildType }} ` | |
--target ALL_BUILD | |
working-directory: "_build" | |
- name: Run Tests | |
run: | | |
ctest --extra-verbose ` | |
--output-on-failure ` | |
-C ${{ matrix.buildType }} | |
working-directory: "_build" | |
- name: Install | |
run: | | |
cmake --build . ` | |
--verbose ` | |
--config ${{ matrix.buildType }} ` | |
--target INSTALL | |
working-directory: "_build" | |
# Run automated code formatting checks. | |
code-formatting-check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Install dependencies (Linux) | |
run: | | |
sudo apt-get install clang-format-16 | |
- uses: actions/checkout@v4 | |
- name: Run clang-format on source code | |
run: | | |
find . \ | |
-name ".git" -prune -o \ | |
-name "*.cpp" -type f -exec clang-format -i --verbose {} + -o \ | |
-name "*.h" -type f -exec clang-format -i --verbose {} + | |
- name: Check for code differences | |
run: | | |
set +e | |
git diff --color | |
git diff-index --quiet HEAD --; EXIT_CODE=$? | |
set -e | |
if [ $EXIT_CODE -ne 0 ]; then echo "C++ code formatting check failed. Please run clang-format on *.h and *.cpp, then push your changes."; fi | |
exit $EXIT_CODE |