File tree Expand file tree Collapse file tree 8 files changed +54
-2
lines changed
testing/contract/examples Expand file tree Collapse file tree 8 files changed +54
-2
lines changed Original file line number Diff line number Diff line change 77# Note the use of multiple checkout actions in most jobs. This has been
88# implemented to allow the use of CI scripts at a different ref or sha than
99# the source code they're evaluating. For push events (when a pull_request is
10- # merged) ther is no difference. However, for pull_request events this allows
10+ # merged) there is no difference. However, for pull_request events this allows
1111# us test code at the head of a pull_request using the CI scripts from the
1212# prospectively merged pull_request, which will include any CI updates that
1313# may have made it to the target branch after the pull_request was started.
@@ -448,8 +448,9 @@ jobs:
448448 strategy :
449449 fail-fast : false
450450 matrix :
451- code : [lammps, tau]
451+ code : [examples, lammps, tau]
452452 include :
453+ - code : examples
453454 - code : lammps
454455 repo : pnorbert/lammps
455456 ref : fix-deprecated-adios-init
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ scripts/developer/setup.sh
1515scripts/docker/setup-user.sh
1616scripts/runconf/runconf.sh
1717scripts/runconf/runconf_olcf.sh
18+ testing/contract/examples/build.sh
19+ testing/contract/examples/config.sh
20+ testing/contract/examples/depends.sh
21+ testing/contract/examples/install.sh
22+ testing/contract/examples/setup.sh
23+ testing/contract/examples/test.sh
1824testing/contract/lammps/build.sh
1925testing/contract/lammps/config.sh
2026testing/contract/lammps/install.sh
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -x
4+ set -e
5+
6+ source $( dirname $( readlink -f ${BASH_SOURCE} ) ) /setup.sh
7+
8+ cmake --build ${build_dir} -j8
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -x
4+ set -e
5+
6+ source $( dirname $( readlink -f ${BASH_SOURCE} ) ) /setup.sh
7+
8+ mkdir -p ${build_dir}
9+ cd ${build_dir}
10+
11+ cmake -DCMAKE_INSTALL_PREFIX=${install_dir} ${source_dir}
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ exit 0
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -x
4+ set -e
5+
6+ source $( dirname $( readlink -f ${BASH_SOURCE} ) ) /setup.sh
7+
8+ cmake --install ${build_dir}
Original file line number Diff line number Diff line change 1+ source_dir=" /opt/adios2/source/examples"
2+ build_dir=$( readlink -f " ${PWD} " ) /build
3+ install_dir=$( readlink -f " ${PWD} " ) /install
4+
5+ echo " source_dir = \" ${source_dir} \" "
6+ echo " build_dir = \" ${build_dir} \" "
7+ echo " install_dir = \" ${install_dir} \" "
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -x
4+ set -e
5+
6+ source $( dirname $( readlink -f ${BASH_SOURCE} ) ) /setup.sh
7+
8+ ${install_dir} /bin/adios2_hello_helloWorld
You can’t perform that action at this time.
0 commit comments