File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- # List of folder paths to iterate through make sure there is no trailing slash
3+ # List of examples to build - add emscripten compatible examples to this list
4+ # NOTE: make sure there is no trailing slash!!!
45folders=(
6+ # 3d
57 " examples/3d/pointCloudExample"
68 " examples/3d/3DPrimitivesExample"
7- # "examples/3d/ofxAssimpBoneControlExample"
8- # "examples/3d/ofxAssimpAdvancedExample"
9+ " examples/3d/ofxAssimpBoneControlExample"
10+ # "examples/3d/ofxAssimpAdvancedExample" #broken currently
11+ " examples/3d/ofNodeExample"
12+ " examples/3d/modelNoiseExample"
13+ # gl
14+ " examples/gl/shadowsExample"
15+ " examples/gl/materialPBR"
16+ " examples/gl/materialPBRAdvanced"
17+ " examples/gl/vboMeshDrawInstancedExample"
18+ # math
19+ " examples/math/noise1dOctaveExample"
920 # Add more paths as needed
1021)
1122
12- # echo "RUNNING IN CI ${GH_BRANCH} ${GH_ACTIONS}"
13- # echo "TRYING USER/SERVER ${GA_EXAMPLES_USER}@${GA_EXAMPLES_SERVER}"
14-
1523cur_root=$( pwd) ;
1624cd $cur_root ;
1725mkdir -p out
4553cd $cur_root ;
4654DO_UPLOAD=" false"
4755
48- # if [[ "$GH_ACTIONS" = true && "${GH_BRANCH}" == "master" && -z "${GH_HEAD_REF}" ]]; then
49- if [[ " $GH_ACTIONS " = " true" ]]; then
56+ if [[ " $GH_ACTIONS " = true && " ${GH_BRANCH} " == " master" && -z " ${GH_HEAD_REF} " ]]; then
5057 echo " upload 1/2 - make key file"
5158 # Temporary file to store the private key
5259 key_file=$( mktemp)
You can’t perform that action at this time.
0 commit comments