generated from DARMA-tasking/template-repository
-
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.
#70: setup problematic rendering environment in CI
- Loading branch information
1 parent
831f22a
commit e94cde6
Showing
2 changed files
with
112 additions
and
2 deletions.
There are no files selected for viewing
112 changes: 112 additions & 0 deletions
112
.github/workflows/70-incorrectly-generated-png-artifacts.yml
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,112 @@ | ||
name: Issue 70 (temp) | ||
|
||
# Trigger the workflow on push or pull request | ||
on: | ||
push: | ||
branches: | ||
- 70-incorrectly-generated-png-artifacts | ||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
host: [ | ||
{ | ||
base: macos-14, | ||
compiler: { cc: clang, cxx: clang++ }, | ||
gcov: llvm-gcov, | ||
python: ['3.8', '3.9', '3.10', '3.11', '3.12'], | ||
vtk: '9.3.1' | ||
} | ||
] | ||
runs-on: ${{ matrix.host.base }} | ||
name: vt-tv build and test (${{ matrix.host.base }}, ${{ matrix.host.compiler.cc }}, vtk-${{ matrix.host.vtk }}, py[${{ join(matrix.host.python, ', ') }}]) | ||
env: | ||
VTK_SRC_DIR: /opt/vtk/src | ||
VTK_BUILD_DIR: /opt/vtk/build | ||
CACHE_KEY: ${{ matrix.host.base }}-${{ matrix.host.compiler.cc }}-vtk-${{ matrix.host.vtk }} | ||
VT_TV_BUILD_DIR: /opt/vt-tv/build | ||
VT_TV_TESTS_ENABLED: "ON" | ||
VT_TV_COVERAGE_ENABLED: ${{ matrix.host.compiler.gcov == '' && 'OFF' || 'ON' }} | ||
VT_TV_OUTPUT_DIR: ${{ github.workspace }}/output | ||
VT_TV_TESTS_OUTPUT_DIR: ${{ github.workspace }}/output/tests | ||
VT_TV_ARTIFACTS_DIR: /tmp/artifacts | ||
CC: ~ | ||
CXX: ~ | ||
GCOV: ~ | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set folder permissions | ||
run: | | ||
sudo chown -R $(whoami) /opt | ||
mkdir -p ${{ env.VTK_SRC_DIR }} ${{ env.VT_TV_BUILD_DIR }} ${{ env.VT_TV_OUTPUT_DIR }} | ||
- name: Set environment variables | ||
run: | | ||
echo "CC=$(which ${{ matrix.host.compiler.cc }})" >> $GITHUB_ENV | ||
echo "CXX=$(which ${{ matrix.host.compiler.cxx }})" >> $GITHUB_ENV | ||
echo "GCOV=$(which ${{ matrix.host.gcov }})" >> $GITHUB_ENV | ||
- name: Install dependencies | ||
run: | | ||
brew update && brew install coreutils lcov xquartz | ||
- name: Load cache (VTK) | ||
id: base-cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
${{ env.VTK_SRC_DIR }} | ||
${{ env.VTK_BUILD_DIR }} | ||
key: ${{ env.CACHE_KEY }} | ||
save-always: true | ||
|
||
- name: Setup VTK ${{ matrix.host.vtk }} | ||
if: ${{steps.base-cache.outputs.cache-hit != 'true'}} | ||
run: | | ||
VTK_DIR=${{ env.VTK_BUILD_DIR }} VTK_SRC_DIR=${{ env.VTK_SRC_DIR }} bash ./ci/setup_vtk.sh | ||
- name: Build | ||
run: | | ||
mkdir -p ${{ env.VT_TV_BUILD_DIR }} | ||
CC="${{ env.CC }}" \ | ||
CXX="${{ env.CXX }}" \ | ||
VTK_DIR="${{ env.VTK_BUILD_DIR }}" \ | ||
VT_TV_BUILD_DIR="${{ env.VT_TV_BUILD_DIR }}" \ | ||
VT_TV_CLEAN=OFF \ | ||
VT_TV_TESTS_ENABLED=${{ env.VT_TV_TESTS_ENABLED }} \ | ||
VT_TV_COVERAGE_ENABLED=${{ env.VT_TV_COVERAGE_ENABLED }} \ | ||
GCOV="${{ env.GCOV }}" \ | ||
VT_TV_PYTHON_BINDINGS_ENABLED=OFF \ | ||
VT_TV_WERROR_ENABLED=ON \ | ||
bash ./build.sh | ||
- name: Run VT-TV Standalone | ||
run: | | ||
cd ${{ env.VT_TV_BUILD_DIR }} | ||
./apps/vt-tv_standalone --conf=${{ github.workspace }}/config/conf.yaml | ||
- name: Collect artifacts | ||
run: | | ||
mkdir -p ${{ env.VT_TV_ARTIFACTS_DIR }} | ||
# > go to output directory | ||
pushd ${{ env.VT_TV_OUTPUT_DIR }} | ||
echo "> add output mesh files and png artifacts" | ||
cp "${{ env.VT_TV_OUTPUT_DIR }}/"*".vtp" ${{ env.VT_TV_ARTIFACTS_DIR }}/ || true | ||
cp "${{ env.VT_TV_OUTPUT_DIR }}/"*".png" ${{ env.VT_TV_ARTIFACTS_DIR }}/ || true | ||
echo "> list of collected artifacts:" | ||
pushd ${{ env.VT_TV_ARTIFACTS_DIR }} | ||
find ${{ env.VT_TV_ARTIFACTS_DIR }} | while read line; do echo "- $line"; done | ||
popd | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: vt-tv-artifacts-${{ env.CACHE_KEY }} | ||
path: ${{ env.VT_TV_ARTIFACTS_DIR }} |
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