1bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 2bedd5dcaSJeremy L Thompson# HONEE GitLab CI 3bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 4bedd5dcaSJeremy L Thompsonstages: 5bedd5dcaSJeremy L Thompson - test:stage-lint 6f27266cbSJeremy L Thompson - test:stage-full 7*a3c4661bSJames Wright - test:docs 8*a3c4661bSJames Wright - deploy 9bedd5dcaSJeremy L Thompson 10bedd5dcaSJeremy L Thompson.test-basic: 11bedd5dcaSJeremy L Thompson interruptible: true 12bedd5dcaSJeremy L Thompson only: 13bedd5dcaSJeremy L Thompson refs: 14bedd5dcaSJeremy L Thompson - web 15bedd5dcaSJeremy L Thompson - merge_requests 16bedd5dcaSJeremy L Thompson 17bedd5dcaSJeremy L Thompson.test: 18bedd5dcaSJeremy L Thompson extends: .test-basic 19bedd5dcaSJeremy L Thompson only: 20bedd5dcaSJeremy L Thompson refs: 21bedd5dcaSJeremy L Thompson - web 22bedd5dcaSJeremy L Thompson - merge_requests 23bedd5dcaSJeremy L Thompson - main 24bedd5dcaSJeremy L Thompson - release 25bedd5dcaSJeremy L Thompson except: 26bedd5dcaSJeremy L Thompson variables: 27bedd5dcaSJeremy L Thompson # Skip if the No-Code label is attached to a merge request (i.e., documentation only) 28bedd5dcaSJeremy L Thompson - $CI_MERGE_REQUEST_LABELS =~ /(^|,)No-Code($|,)/ 29bedd5dcaSJeremy L Thompson needs: 30bedd5dcaSJeremy L Thompson - job: docker-build 31bedd5dcaSJeremy L Thompson optional: true 32bedd5dcaSJeremy L Thompson 33bedd5dcaSJeremy L Thompson.docs: 34bedd5dcaSJeremy L Thompson image: python:3.10 35bedd5dcaSJeremy L Thompson before_script: 36bedd5dcaSJeremy L Thompson - pip install -r doc/requirements.txt 37bedd5dcaSJeremy L Thompson - apt-get update 38bedd5dcaSJeremy L Thompson - apt-get install -y doxygen librsvg2-bin 39bedd5dcaSJeremy L Thompson 40bedd5dcaSJeremy L Thompson 41bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 42bedd5dcaSJeremy L Thompson# Test formatting and static analysis 43bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 44bedd5dcaSJeremy L Thompsonnoether-lint: 45bedd5dcaSJeremy L Thompson stage: test:stage-lint 46bedd5dcaSJeremy L Thompson extends: .test 47bedd5dcaSJeremy L Thompson tags: 48bedd5dcaSJeremy L Thompson - noether 49bedd5dcaSJeremy L Thompson - shell 50bedd5dcaSJeremy L Thompson needs: [] 51bedd5dcaSJeremy L Thompson script: 52bedd5dcaSJeremy L Thompson - rm -f .SUCCESS 53bedd5dcaSJeremy L Thompson # Environment 54bedd5dcaSJeremy L Thompson - export COVERAGE=1 CC=gcc HIPCC=hipcc 55bedd5dcaSJeremy L Thompson - echo "-------------- nproc ---------------" && NPROC_CPU=$(nproc) && NPROC_GPU=$(($(nproc)<8?$(nproc):8)) && echo "NPROC_CPU" $NPROC_CPU && echo "NPROC_GPU" $NPROC_GPU 56bedd5dcaSJeremy L Thompson - echo "-------------- CC ------------------" && $CC --version 57bedd5dcaSJeremy L Thompson - echo "-------------- GCOV ----------------" && gcov --version 58bedd5dcaSJeremy L Thompson - echo "-------------- HIPCC ---------------" && $HIPCC --version && export HIP_DIR=/opt/rocm 59bedd5dcaSJeremy L Thompson # Libraries 60bedd5dcaSJeremy L Thompson # -- libCEED 61bedd5dcaSJeremy L Thompson - echo "-------------- libCEED -------------" 62bedd5dcaSJeremy L Thompson - export CEED_DIR=/projects/honee/libCEED && git -C $CEED_DIR -c safe.directory=$CEED_DIR describe && make -C $CEED_DIR info 63bedd5dcaSJeremy L Thompson # -- PETSc 64bedd5dcaSJeremy L Thompson - echo "-------------- PETSc ---------------" 65bedd5dcaSJeremy L Thompson - export PETSC_DIR=/projects/honee/petsc 66bedd5dcaSJeremy L Thompson - export PETSC_ARCH=arch-serial-gpu && git -C $PETSC_DIR -c safe.directory=$PETSC_DIR describe && make -C $PETSC_DIR info 67bedd5dcaSJeremy L Thompson - export PETSC_OPTIONS='-malloc_debug no' # faster tests 68bedd5dcaSJeremy L Thompson - export LD_LIBRARY_PATH=$PETSC_DIR/lib PATH="$PATH:$PETSC_DIR/bin" # cgnsdiff 69bedd5dcaSJeremy L Thompson # make with Werror, Wall, supress loop vectorization warnings 70bedd5dcaSJeremy L Thompson - echo "-------------- make Werror ---------" 7174512b2dSJeremy L Thompson - PEDANTIC=1 PEDANTICFLAGS="-Werror -Wall -Wno-pass-failed" make -j$NPROC_CPU 72bedd5dcaSJeremy L Thompson # make format 73bedd5dcaSJeremy L Thompson - echo "-------------- make format ---------" && export CLANG_FORMAT=clang-format-15 && $CLANG_FORMAT --version 74bedd5dcaSJeremy L Thompson - make -j$NPROC_CPU format && git diff --color=always --exit-code 75bedd5dcaSJeremy L Thompson # Clang-tidy 76bedd5dcaSJeremy L Thompson - echo "-------------- clang-tidy ----------" && export CLANG_TIDY=clang-tidy-15 && $CLANG_TIDY --version 771bb043dcSJeremy L Thompson - PETSC_ARCH=arch-serial-gpu make -j$NPROC_CPU tidy 78bedd5dcaSJeremy L Thompson # Report status 79bedd5dcaSJeremy L Thompson - touch .SUCCESS 80bedd5dcaSJeremy L Thompson 81bedd5dcaSJeremy L Thompson 82bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 83bedd5dcaSJeremy L Thompson# Test memory access assumptions 84bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 85bedd5dcaSJeremy L Thompsonnoether-memcheck: 86f27266cbSJeremy L Thompson stage: test:stage-lint 87bedd5dcaSJeremy L Thompson extends: .test 88bedd5dcaSJeremy L Thompson tags: 89bedd5dcaSJeremy L Thompson - noether 90bedd5dcaSJeremy L Thompson - shell 91bedd5dcaSJeremy L Thompson needs: [] 92bedd5dcaSJeremy L Thompson script: 93bedd5dcaSJeremy L Thompson - rm -f .SUCCESS 94bedd5dcaSJeremy L Thompson # Environment 95bedd5dcaSJeremy L Thompson # -- NOTE: Coverage disabled because it doesn't play nice with the ASAN options 96bedd5dcaSJeremy L Thompson - export CC=clang-15 97bedd5dcaSJeremy L Thompson - export NPROC_POOL=8 98bedd5dcaSJeremy L Thompson - echo "-------------- nproc ---------------" && NPROC_CPU=$(nproc) && NPROC_GPU=$(($(nproc)<8?$(nproc):8)) && echo "NPROC_CPU" $NPROC_CPU && echo "NPROC_GPU" $NPROC_GPU 99bedd5dcaSJeremy L Thompson - echo "-------------- CC ------------------" && $CC --version 100bedd5dcaSJeremy L Thompson # Libraries 101bedd5dcaSJeremy L Thompson # -- libCEED 102bedd5dcaSJeremy L Thompson - echo "-------------- libCEED -------------" 103bedd5dcaSJeremy L Thompson - export CEED_DIR=/projects/honee/libCEED-cpu && git -C $CEED_DIR -c safe.directory=$CEED_DIR describe && make -C $CEED_DIR info 104bedd5dcaSJeremy L Thompson # -- PETSc 105bedd5dcaSJeremy L Thompson - echo "-------------- PETSc ---------------" 106bedd5dcaSJeremy L Thompson - export PETSC_DIR=/projects/honee/petsc 107bedd5dcaSJeremy L Thompson - export PETSC_ARCH=arch-serial-cpu-clang && git -C $PETSC_DIR -c safe.directory=$PETSC_DIR describe && make -C $PETSC_DIR info 108bedd5dcaSJeremy L Thompson - export PETSC_OPTIONS='-malloc_debug no' # faster tests 109bedd5dcaSJeremy L Thompson - export LD_LIBRARY_PATH=$PETSC_DIR/lib PATH="$PATH:$PETSC_DIR/bin" # cgnsdiff 110bedd5dcaSJeremy L Thompson # ASAN 111bedd5dcaSJeremy L Thompson - echo "-------------- ASAN ----------------" 11203f5db93SJeremy L Thompson - echo "ASAN intentionlly skipped, known leaks" 11303f5db93SJeremy L Thompson # - export ASAN=1 AFLAGS="-fsanitize=address -fsanitize=leak" 114bedd5dcaSJeremy L Thompson - echo $AFLAGS 115bedd5dcaSJeremy L Thompson # HONEE 116bedd5dcaSJeremy L Thompson - echo "-------------- HONEE ---------------" && make info 117bedd5dcaSJeremy L Thompson - make clean 11874512b2dSJeremy L Thompson - make -j$NPROC_CPU 119bedd5dcaSJeremy L Thompson # Test suite 120bedd5dcaSJeremy L Thompson - echo "-------------- HONEE tests ---------" 121bedd5dcaSJeremy L Thompson - echo '[{"subject":"/","metrics":[{"name":"Transfer Size (KB)","value":"19.5","desiredSize":"smaller"},{"name":"Speed Index","value":0,"desiredSize":"smaller"},{"name":"Total Score","value":92,"desiredSize":"larger"},{"name":"Requests","value":4,"desiredSize":"smaller"}]}]' > performance.json 122bedd5dcaSJeremy L Thompson # -- Memcheck libCEED CPU backend, serial 123bedd5dcaSJeremy L Thompson - NPROC_TEST=1 make -k -j$((NPROC_CPU / NPROC_POOL)) CEED_BACKENDS="/cpu/self/memcheck" JUNIT_BATCH="cpu-serial-memcheck" junit realsearch=% 124bedd5dcaSJeremy L Thompson # Report status 125bedd5dcaSJeremy L Thompson - touch .SUCCESS 126bedd5dcaSJeremy L Thompson artifacts: 127bedd5dcaSJeremy L Thompson paths: 128bedd5dcaSJeremy L Thompson - build/*.junit 129bedd5dcaSJeremy L Thompson reports: 130bedd5dcaSJeremy L Thompson junit: build/*.junit 131bedd5dcaSJeremy L Thompson performance: performance.json 132bedd5dcaSJeremy L Thompson expire_in: 28 days 133bedd5dcaSJeremy L Thompson 134bedd5dcaSJeremy L Thompson 135bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 136bedd5dcaSJeremy L Thompson# CPU testing on Noether 137bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 138bedd5dcaSJeremy L Thompsonnoether-cpu: 139f27266cbSJeremy L Thompson stage: test:stage-full 140bedd5dcaSJeremy L Thompson extends: .test 141bedd5dcaSJeremy L Thompson tags: 142bedd5dcaSJeremy L Thompson - noether 143bedd5dcaSJeremy L Thompson - shell 144bedd5dcaSJeremy L Thompson script: 145bedd5dcaSJeremy L Thompson - rm -f .SUCCESS 146bedd5dcaSJeremy L Thompson # Environment 147bedd5dcaSJeremy L Thompson - export COVERAGE=1 CC=gcc HIPCC=hipcc 148bedd5dcaSJeremy L Thompson - export NPROC_POOL=4 149bedd5dcaSJeremy L Thompson - echo "-------------- nproc ---------------" && NPROC_CPU=$(nproc) && NPROC_GPU=$(($(nproc)<8?$(nproc):8)) && echo "NPROC_CPU" $NPROC_CPU && echo "NPROC_GPU" $NPROC_GPU 150bedd5dcaSJeremy L Thompson - echo "-------------- CC ------------------" && $CC --version 151bedd5dcaSJeremy L Thompson - echo "-------------- GCOV ----------------" && gcov --version 152bedd5dcaSJeremy L Thompson - echo "-------------- HIPCC ---------------" && $HIPCC --version && export HIP_DIR=/opt/rocm 153bedd5dcaSJeremy L Thompson # Libraries 154bedd5dcaSJeremy L Thompson # -- libCEED 155bedd5dcaSJeremy L Thompson - echo "-------------- libCEED -------------" 156bedd5dcaSJeremy L Thompson - export CEED_DIR=/projects/honee/libCEED && git -C $CEED_DIR -c safe.directory=$CEED_DIR describe && make -C $CEED_DIR info 157bedd5dcaSJeremy L Thompson # -- PETSc 158bedd5dcaSJeremy L Thompson - echo "-------------- PETSc ---------------" 159bedd5dcaSJeremy L Thompson - export PETSC_DIR=/projects/honee/petsc 160bedd5dcaSJeremy L Thompson - export PETSC_ARCH=arch-parallel-gpu && git -C $PETSC_DIR -c safe.directory=$PETSC_DIR describe && make -C $PETSC_DIR info 161bedd5dcaSJeremy L Thompson - export PETSC_OPTIONS='-malloc_debug no' # faster tests 162bedd5dcaSJeremy L Thompson - export LD_LIBRARY_PATH=$PETSC_DIR/$PETSC_ARCH/lib PATH="$PATH:$PETSC_DIR/$PETSC_ARCH/bin" # cgnsdiff 163bedd5dcaSJeremy L Thompson # HONEE 164bedd5dcaSJeremy L Thompson - echo "-------------- HONEE ---------------" && make info 165bedd5dcaSJeremy L Thompson - make clean 16674512b2dSJeremy L Thompson - make -j$NPROC_CPU 167bedd5dcaSJeremy L Thompson # Test suite 168bedd5dcaSJeremy L Thompson - echo "-------------- HONEE tests ---------" 169bedd5dcaSJeremy L Thompson - echo '[{"subject":"/","metrics":[{"name":"Transfer Size (KB)","value":"19.5","desiredSize":"smaller"},{"name":"Speed Index","value":0,"desiredSize":"smaller"},{"name":"Total Score","value":92,"desiredSize":"larger"},{"name":"Requests","value":4,"desiredSize":"smaller"}]}]' > performance.json 170bedd5dcaSJeremy L Thompson # -- Fastest libCEED CPU backend, parallel 171bedd5dcaSJeremy L Thompson # Note: /shared is faster due to /gen JiT time for CeedOperators overwhelming runtime improvements at these problem sizes 172a447840aSJeremy L Thompson - echo "Parallel tests skipped for now" 173a447840aSJeremy L Thompson # - NPROC_TEST=2 make -k -j$((NPROC_GPU / NPROC_POOL / 2)) CEED_BACKENDS="/gpu/hip/shared" JUNIT_BATCH="cpu-parallel" junit realsearch=% 174bedd5dcaSJeremy L Thompson # Report status 175bedd5dcaSJeremy L Thompson - touch .SUCCESS 176bedd5dcaSJeremy L Thompson after_script: 177bedd5dcaSJeremy L Thompson - | 178bedd5dcaSJeremy L Thompson if [ -f .SUCCESS ]; then 179bedd5dcaSJeremy L Thompson gcovr --xml-pretty --exclude-unreachable-branches --print-summary -o coverage.xml; 180bedd5dcaSJeremy L Thompson fi 181bedd5dcaSJeremy L Thompson artifacts: 182bedd5dcaSJeremy L Thompson paths: 183bedd5dcaSJeremy L Thompson - coverage.xml 184bedd5dcaSJeremy L Thompson - build/*.junit 185bedd5dcaSJeremy L Thompson reports: 186bedd5dcaSJeremy L Thompson coverage_report: 187bedd5dcaSJeremy L Thompson coverage_format: cobertura 188bedd5dcaSJeremy L Thompson path: coverage.xml 189bedd5dcaSJeremy L Thompson junit: build/*.junit 190bedd5dcaSJeremy L Thompson performance: performance.json 191bedd5dcaSJeremy L Thompson expire_in: 28 days 192bedd5dcaSJeremy L Thompson 193bedd5dcaSJeremy L Thompson 194bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 195bedd5dcaSJeremy L Thompson# GPU testing on Noether 196bedd5dcaSJeremy L Thompson# ---------------------------------------------------------------------------------------- 197bedd5dcaSJeremy L Thompsonnoether-gpu: 198f27266cbSJeremy L Thompson stage: test:stage-full 199bedd5dcaSJeremy L Thompson extends: .test 200bedd5dcaSJeremy L Thompson tags: 201bedd5dcaSJeremy L Thompson - noether 202bedd5dcaSJeremy L Thompson - shell 203bedd5dcaSJeremy L Thompson script: 204bedd5dcaSJeremy L Thompson - rm -f .SUCCESS 205bedd5dcaSJeremy L Thompson # Environment 206bedd5dcaSJeremy L Thompson - export COVERAGE=1 CC=gcc HIPCC=hipcc 207bedd5dcaSJeremy L Thompson - export NPROC_POOL=4 208bedd5dcaSJeremy L Thompson - echo "-------------- nproc ---------------" && NPROC_CPU=$(nproc) && NPROC_GPU=$(($(nproc)<8?$(nproc):8)) && echo "NPROC_CPU" $NPROC_CPU && echo "NPROC_GPU" $NPROC_GPU 209bedd5dcaSJeremy L Thompson - echo "-------------- CC ------------------" && $CC --version 210bedd5dcaSJeremy L Thompson - echo "-------------- GCOV ----------------" && gcov --version 211bedd5dcaSJeremy L Thompson - echo "-------------- HIPCC ---------------" && $HIPCC --version && export HIP_DIR=/opt/rocm 212bedd5dcaSJeremy L Thompson # Libraries 213bedd5dcaSJeremy L Thompson # -- libCEED 214bedd5dcaSJeremy L Thompson - echo "-------------- libCEED -------------" 215bedd5dcaSJeremy L Thompson - export CEED_DIR=/projects/honee/libCEED && git -C $CEED_DIR -c safe.directory=$CEED_DIR describe && make -C $CEED_DIR info 216bedd5dcaSJeremy L Thompson # -- PETSc 217bedd5dcaSJeremy L Thompson - echo "-------------- PETSc ---------------" 218bedd5dcaSJeremy L Thompson - export PETSC_DIR=/projects/honee/petsc 219bedd5dcaSJeremy L Thompson - export PETSC_ARCH=arch-parallel-gpu && git -C $PETSC_DIR -c safe.directory=$PETSC_DIR describe && make -C $PETSC_DIR info 220bedd5dcaSJeremy L Thompson - export PETSC_OPTIONS='-malloc_debug no' # faster tests 221bedd5dcaSJeremy L Thompson - export LD_LIBRARY_PATH=$PETSC_DIR/$PETSC_ARCH/lib PATH="$PATH:$PETSC_DIR/$PETSC_ARCH/bin" # cgnsdiff 222bedd5dcaSJeremy L Thompson # HONEE 223bedd5dcaSJeremy L Thompson - echo "-------------- HONEE ---------------" && make info 224bedd5dcaSJeremy L Thompson - make clean 22574512b2dSJeremy L Thompson - make -j$NPROC_CPU 226bedd5dcaSJeremy L Thompson # Test suite 227bedd5dcaSJeremy L Thompson - echo "-------------- HONEE tests ---------" 228bedd5dcaSJeremy L Thompson - echo '[{"subject":"/","metrics":[{"name":"Transfer Size (KB)","value":"19.5","desiredSize":"smaller"},{"name":"Speed Index","value":0,"desiredSize":"smaller"},{"name":"Total Score","value":92,"desiredSize":"larger"},{"name":"Requests","value":4,"desiredSize":"smaller"}]}]' > performance.json 229bedd5dcaSJeremy L Thompson # -- Fastest libCEED HIP backend, serial 230bedd5dcaSJeremy L Thompson - NPROC_TEST=1 make -k -j$((NPROC_GPU / NPROC_POOL / 1)) CEED_BACKENDS="/cpu/self" JUNIT_BATCH="hip-serial" junit realsearch=% 231bedd5dcaSJeremy L Thompson # Report status 232bedd5dcaSJeremy L Thompson - touch .SUCCESS 233bedd5dcaSJeremy L Thompson after_script: 234bedd5dcaSJeremy L Thompson - | 235bedd5dcaSJeremy L Thompson if [ -f .SUCCESS ]; then 236bedd5dcaSJeremy L Thompson gcovr --xml-pretty --exclude-unreachable-branches --print-summary -o coverage.xml; 237bedd5dcaSJeremy L Thompson fi 238bedd5dcaSJeremy L Thompson artifacts: 239bedd5dcaSJeremy L Thompson paths: 240bedd5dcaSJeremy L Thompson - coverage.xml 241bedd5dcaSJeremy L Thompson - build/*.junit 242bedd5dcaSJeremy L Thompson reports: 243bedd5dcaSJeremy L Thompson coverage_report: 244bedd5dcaSJeremy L Thompson coverage_format: cobertura 245bedd5dcaSJeremy L Thompson path: coverage.xml 246bedd5dcaSJeremy L Thompson junit: build/*.junit 247bedd5dcaSJeremy L Thompson performance: performance.json 248bedd5dcaSJeremy L Thompson expire_in: 28 days 249*a3c4661bSJames Wright 250*a3c4661bSJames Wright 251*a3c4661bSJames Wright# ---------------------------------------------------------------------------------------- 252*a3c4661bSJames Wright# Build documentation 253*a3c4661bSJames Wright# ---------------------------------------------------------------------------------------- 254*a3c4661bSJames Wrightdocs-review: 255*a3c4661bSJames Wright stage: test:docs 256*a3c4661bSJames Wright tags: 257*a3c4661bSJames Wright - noether 258*a3c4661bSJames Wright - docker 259*a3c4661bSJames Wright extends: 260*a3c4661bSJames Wright - .docs 261*a3c4661bSJames Wright - .test-basic 262*a3c4661bSJames Wright interruptible: true 263*a3c4661bSJames Wright script: 264*a3c4661bSJames Wright - export PETSC_DIR=/projects/honee/petsc PETSC_ARCH=arch-parallel-gpu CEED_DIR=/projects/honee/libCEED 265*a3c4661bSJames Wright - git submodule update --init 266*a3c4661bSJames Wright - make doc-html pkgconf=true DOXYGENOPTS= SPHINXOPTS=-W 267*a3c4661bSJames Wright - mv doc/build/html public 268*a3c4661bSJames Wright artifacts: 269*a3c4661bSJames Wright paths: 270*a3c4661bSJames Wright - public 271*a3c4661bSJames Wright expire_in: 28 days 272*a3c4661bSJames Wright environment: 273*a3c4661bSJames Wright name: review/$CI_COMMIT_REF_NAME 274*a3c4661bSJames Wright url: https://$CI_PROJECT_NAMESPACE.gitlab.io/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts/public/index.html 275*a3c4661bSJames Wright 276*a3c4661bSJames Wright 277*a3c4661bSJames Wright# ---------------------------------------------------------------------------------------- 278*a3c4661bSJames Wright# Deploy documentation using GitLab pages 279*a3c4661bSJames Wright# ---------------------------------------------------------------------------------------- 280*a3c4661bSJames Wrightpages: # this job name has special meaning to GitLab 281*a3c4661bSJames Wright stage: deploy 282*a3c4661bSJames Wright tags: 283*a3c4661bSJames Wright - noether 284*a3c4661bSJames Wright - docker 285*a3c4661bSJames Wright extends: .docs 286*a3c4661bSJames Wright interruptible: false 287*a3c4661bSJames Wright script: 288*a3c4661bSJames Wright - git submodule update --init 289*a3c4661bSJames Wright - make doc-dirhtml pkgconf=true DOXYGENOPTS= 290*a3c4661bSJames Wright - mv doc/build/dirhtml public 291*a3c4661bSJames Wright only: 292*a3c4661bSJames Wright - main 293*a3c4661bSJames Wright artifacts: 294*a3c4661bSJames Wright paths: 295*a3c4661bSJames Wright - public 296