diff --git a/CHANGELOG.md b/CHANGELOG.md index a98f59b7efa04a9476194c075a6f4d37c2bd3674..8f274197575f0aa366f23a678db66997fdba53e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### New ### Changed + - Unify dependency scripts (dl and compile): Unify `-d` and `-p` flags ([!174](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/174)). - Support for `close_range` syscall. ([!201](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/201)). - Removal of `O_PATH` check in `gkfs_open`, allows cp with asterisk. This is for newer kernels. @@ -16,6 +17,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Increased merge assert for files with size 0, specific for DLIO with GekkoFS in Debug ([!208])(https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/208)). - Added code to correct fork issues. `pthread_at_fork` cleans and starts GekkoFS ([!210](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/210)). - Updated mochi to solve ucx corruption issues ([!211])(https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/211)). +- Update capstone to version 6.0.0-Alpha1 and syscall intercept to match ([!215](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/215)). ### Fixed ## [0.9.3] - 2024-07 diff --git a/docker/0.9.4/core/Dockerfile b/docker/0.9.4/core/Dockerfile index ced6c14a32bda048afb0a50547a3792f0d4118c8..38ba03094d694c80d6f688ff5b536c537c57548b 100644 --- a/docker/0.9.4/core/Dockerfile +++ b/docker/0.9.4/core/Dockerfile @@ -25,7 +25,7 @@ RUN apt-get update && \ # RocksDB dependencies liblz4-dev \ # syscall_intercept dependencies - libcapstone-dev \ + # libcapstone-dev \ # GekkoFS dependencies libboost-program-options-dev \ uuid-dev ccache && \ diff --git a/docker/build_env.docker b/docker/build_env.docker index 346807b86f756312b0c24843cd7af93197a59545..947db64ae9b18f4e805964f1193cdf6d32211a81 100644 --- a/docker/build_env.docker +++ b/docker/build_env.docker @@ -42,8 +42,8 @@ RUN yum -y -q update && yum -y -q install \ devtoolset-8-gcc-c++ \ libuuid-devel \ # syscall_intercept - capstone \ - capstone-devel \ + # capstone \ + # capstone-devel \ && yum -y -q clean all # Enable gcc/g++ 8.x @@ -100,8 +100,8 @@ RUN yum -y -q update && yum -y -q install \ devtoolset-8-gcc-c++ \ libuuid-devel \ # syscall_intercept - capstone \ - capstone-devel \ + # capstone \ + # capstone-devel \ && yum -y -q clean all diff --git a/scripts/profiles/0.9.4/agios.specs b/scripts/profiles/0.9.4/agios.specs index bda8a2c596d7a60e0db2642cafb197910af32917..7c20ffaf3e430867621ad53c7c2c4aaeb11bb70d 100644 --- a/scripts/profiles/0.9.4/agios.specs +++ b/scripts/profiles/0.9.4/agios.specs @@ -38,7 +38,7 @@ comment="All dependencies (except transport-specific and experimental)" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -49,7 +49,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ["agios"]="c26a6544200f823ebb8f890dd94e653d148bf226@development" ) @@ -58,11 +58,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "agios" diff --git a/scripts/profiles/0.9.4/arm.specs b/scripts/profiles/0.9.4/arm.specs index a207f5175e2bedb48e27bf56c29ef6620533e1c9..39d609c273be62d17d767934645e52979c9bd20c 100644 --- a/scripts/profiles/0.9.4/arm.specs +++ b/scripts/profiles/0.9.4/arm.specs @@ -38,7 +38,7 @@ comment="Dependencies for PowerPC supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -50,7 +50,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="fb73c3924b502e2840a5dc8a18746e395b06a8a6" + ["syscall_intercept"]="34a41033fce94195700c5ab1e097f40741d7f016" ) # Extra arguments for git clone @@ -58,11 +58,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch.arm64" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" diff --git a/scripts/profiles/0.9.4/ci.specs b/scripts/profiles/0.9.4/ci.specs index 59fc54cbb21d5178a69154cf1f812a8d06f39c2e..b1199689cea089dddde685f6842b82883600982c 100644 --- a/scripts/profiles/0.9.4/ci.specs +++ b/scripts/profiles/0.9.4/ci.specs @@ -40,6 +40,7 @@ wgetdeps=( ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["prometheus-cpp"]="v1.0.0" + ["capstone"]="6.0.0-Alpha1" ) # Dependencies that must be cloned @@ -47,7 +48,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ["agios"]="c26a6544200f823ebb8f890dd94e653d148bf226@development" ["parallax"]="ffdea6e820f5c4c2d33e60d9a4b15ef9e6bbcfdd" ) @@ -57,15 +58,10 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( - "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" - "agios" "parallax" "prometheus-cpp" + "capstone" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" + "agios" "parallax" "prometheus-cpp" ) # Extra arguments passed to the installation script. As such, they can diff --git a/scripts/profiles/0.9.4/default.specs b/scripts/profiles/0.9.4/default.specs index be1cc810e51cdff7af7ba4381c0728402b4422dc..89de15f5ce1676b31c567d1b6d21b56c23ebcc3a 100644 --- a/scripts/profiles/0.9.4/default.specs +++ b/scripts/profiles/0.9.4/default.specs @@ -38,7 +38,7 @@ comment="All dependencies" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -49,7 +49,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ) # Extra arguments for git clone @@ -57,11 +57,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch syscall_intercept_clone3.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" diff --git a/scripts/profiles/0.9.4/default_zmq.specs b/scripts/profiles/0.9.4/default_zmq.specs index 6599803638d5d73110616f47938e943737446614..436c93acd1046405d6b6f3c547d259ff6b985e0f 100644 --- a/scripts/profiles/0.9.4/default_zmq.specs +++ b/scripts/profiles/0.9.4/default_zmq.specs @@ -38,7 +38,7 @@ comment="All dependencies" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -51,7 +51,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ) # Extra arguments for git clone @@ -59,11 +59,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch syscall_intercept_clone3.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "libzmq" "cppzmq" diff --git a/scripts/profiles/0.9.4/infiniband_verbs.specs b/scripts/profiles/0.9.4/infiniband_verbs.specs index 175ce1aa3a25f0e86a8d59e2e3c819bd42b8ad1f..abb007772353c16bd7d7926f34343900ce48e913 100644 --- a/scripts/profiles/0.9.4/infiniband_verbs.specs +++ b/scripts/profiles/0.9.4/infiniband_verbs.specs @@ -38,7 +38,7 @@ comment="Dependencies for Infiniband supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -49,7 +49,7 @@ clonedeps=( ["libfabric%verbs"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ) # Extra arguments for git clone @@ -57,11 +57,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading/installing order=( "lz4" "capstone" "json-c" "libfabric%verbs" "mercury" "argobots" "margo" "rocksdb" diff --git a/scripts/profiles/0.9.4/install/capstone.install b/scripts/profiles/0.9.4/install/capstone.install index afd7794aff4c51cfc24b9351fd875a4a8724f1dd..197481d64e5073a4a75cc1bfab37eb68c257bbe4 100644 --- a/scripts/profiles/0.9.4/install/capstone.install +++ b/scripts/profiles/0.9.4/install/capstone.install @@ -48,7 +48,7 @@ pkg_install() { CURR="${SOURCE_DIR}/${ID}" prepare_build_dir "${CURR}" cd "${CURR}/build" - ${CMAKE} -DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" -DCMAKE_BUILD_TYPE:STRING=Release .. + ${CMAKE} -DCMAKE_INSTALL_PREFIX="${INSTALL_DIR}" -DCMAKE_BUILD_TYPE:STRING=Release -DBUILD_SHARED_LIBS=ON .. make -j"${CORES}" install } diff --git a/scripts/profiles/0.9.4/install/syscall_intercept.install b/scripts/profiles/0.9.4/install/syscall_intercept.install index f69393d3a9ddb2c68f397973b26108035ea4ce4e..03a27be53a05678c00a461c7df7cb9670951e572 100644 --- a/scripts/profiles/0.9.4/install/syscall_intercept.install +++ b/scripts/profiles/0.9.4/install/syscall_intercept.install @@ -48,11 +48,12 @@ pkg_install() { CURR="${SOURCE_DIR}/${ID}" EXTRA_INSTALL_ARGS="${PROFILE_EXTRA_INSTALL_ARGS[${ID}]}" prepare_build_dir "${CURR}" + if [[ ${EXTRA_INSTALL_ARGS} == "ARM64" ]]; then cd "${CURR}"/arch/aarch64/ mkdir -p build cd build - else + else cd "${CURR}"/build fi $CMAKE -DCMAKE_PREFIX_PATH="${INSTALL_DIR}" \ diff --git a/scripts/profiles/0.9.4/marenostrum4.specs b/scripts/profiles/0.9.4/marenostrum4.specs index f678fd93f3311e20e312f9509aa18a1c852942c7..0c20e8bad01de6c7e52716a343444fd2c10c2bd2 100644 --- a/scripts/profiles/0.9.4/marenostrum4.specs +++ b/scripts/profiles/0.9.4/marenostrum4.specs @@ -38,7 +38,7 @@ comment="Dependencies for Marenostrum 4 supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -50,7 +50,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ["date"]="e7e1482087f58913b80a20b04d5c58d9d6d90155" ["parallax"]="c130decd7a71c60c20b98d6a23924f05f754c3cd" ) @@ -60,11 +60,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" "parallax" diff --git a/scripts/profiles/0.9.4/mogon2.specs b/scripts/profiles/0.9.4/mogon2.specs index 8f5801f0e9fdb5b7231d86ef42f299bc3382e656..42db16e882cf028031334cd402992af40218c1fa 100644 --- a/scripts/profiles/0.9.4/mogon2.specs +++ b/scripts/profiles/0.9.4/mogon2.specs @@ -38,7 +38,7 @@ comment="Dependencies for Mogon 2 supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.1" ["rocksdb"]="8.10.0" ["psm2"]="11.2.185" @@ -50,7 +50,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.3.1" ["margo"]="v0.15.0" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ["date"]="e7e1482087f58913b80a20b04d5c58d9d6d90155" ) @@ -59,11 +59,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" "psm2" diff --git a/scripts/profiles/0.9.4/mogon3.specs b/scripts/profiles/0.9.4/mogon3.specs index 1eec2d166c91dbf28a22eb168641d4e99775d80f..9e4c180ba378f16b5a32cbd0e25faaf0cca08379 100644 --- a/scripts/profiles/0.9.4/mogon3.specs +++ b/scripts/profiles/0.9.4/mogon3.specs @@ -38,7 +38,7 @@ comment="Dependencies for Mogon 2 supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -51,7 +51,7 @@ clonedeps=( # ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ) # Extra arguments for git clone @@ -59,11 +59,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "libzmq" "cppzmq" diff --git a/scripts/profiles/0.9.4/ngio.specs b/scripts/profiles/0.9.4/ngio.specs index d6988929f482756dea1d70a0bcb1ea48ec8524f7..7ba84d4140c534eaca221925117979fc0043460e 100644 --- a/scripts/profiles/0.9.4/ngio.specs +++ b/scripts/profiles/0.9.4/ngio.specs @@ -38,7 +38,7 @@ comment="Dependencies for NEXTGenIO prototype cluster" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -50,7 +50,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ["date"]="e7e1482087f58913b80a20b04d5c58d9d6d90155" ["parallax"]="c130decd7a71c60c20b98d6a23924f05f754c3cd" ) @@ -60,11 +60,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" "parallax" diff --git a/scripts/profiles/0.9.4/omnipath_psm2.specs b/scripts/profiles/0.9.4/omnipath_psm2.specs index 3666fde8ef6030dcdeb234d1bd03b48cf9e939a1..268b5292248b7f27c38db589f05eb8b70d042c73 100644 --- a/scripts/profiles/0.9.4/omnipath_psm2.specs +++ b/scripts/profiles/0.9.4/omnipath_psm2.specs @@ -38,7 +38,7 @@ comment="Dependencies for Omnipath supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -50,7 +50,7 @@ clonedeps=( ["libfabric"]="HEAD@v1.20.1" ["mercury"]="v2.4.0" ["margo"]="v0.18.3" - ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d" + ["syscall_intercept"]="d8b2a69961921ed123625c79a609331fc56a8931" ["date"]="e7e1482087f58913b80a20b04d5c58d9d6d90155" ) @@ -59,11 +59,6 @@ clonedeps_args=( ["mercury"]="--recurse-submodules" ) -# Patches that should be applied post-clone -clonedeps_patches=( - ["syscall_intercept"]="syscall_intercept.patch" -) - # Ordering that MUST be followed when downloading order=( "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" diff --git a/scripts/profiles/0.9.4/p9.specs b/scripts/profiles/0.9.4/p9.specs index c10ea7f47a07bbf390e05e9a292fef0ab1ec5b77..a0abcf6afd14706d0699cdcf5fc751c3a16ba231 100644 --- a/scripts/profiles/0.9.4/p9.specs +++ b/scripts/profiles/0.9.4/p9.specs @@ -38,7 +38,7 @@ comment="Dependencies for PowerPC supercomputer" # Dependencies that must be downloaded directly wgetdeps=( ["lz4"]="1.9.4" - ["capstone"]="4.0.2" + ["capstone"]="6.0.0-Alpha1" ["argobots"]="1.2" ["rocksdb"]="8.10.0" ["json-c"]="0.17-20230812" @@ -66,7 +66,7 @@ clonedeps_patches=( # Ordering that MUST be followed when downloading order=( - "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" + "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" ) # Extra arguments passed to the installation script. As such, they can diff --git a/tests/scripts/dl_dep.sh/0.9.4/agios.out b/tests/scripts/dl_dep.sh/0.9.4/agios.out index 62276d28e41d147803656c654b97a733b2b6564a..9df97276059aed181ca758e55e4d46cd8d8e765d 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/agios.out +++ b/tests/scripts/dl_dep.sh/0.9.4/agios.out @@ -1,12 +1,11 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4.0]' and flags '--recurse-submodules' Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Cloned 'https://github.com/francielizanon/agios.git' to 'agios' with commit '[c26a6544200f823ebb8f890dd94e653d148bf226]' and flags '--branch=development' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/arm.out b/tests/scripts/dl_dep.sh/0.9.4/arm.out index 8691858468c4f94d511fd539de95ff1b49d08a83..abb22e38665f44506b9fba8ac15d7d3202486753 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/arm.out +++ b/tests/scripts/dl_dep.sh/0.9.4/arm.out @@ -1,5 +1,5 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Downloaded 'https://github.com/cornelisnetworks/opa-psm2/archive/PSM2_11.2.185.tar.gz' to 'psm2' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' @@ -7,6 +7,5 @@ Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4. Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[fb73c3924b502e2840a5dc8a18746e395b06a8a6]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch.arm64'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[34a41033fce94195700c5ab1e097f40741d7f016]' and flags '' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/default.out b/tests/scripts/dl_dep.sh/0.9.4/default.out index 501bc71889d3a592af09f96a36cdddf321b88679..126bbb2ad23ed23d450ad2871b37316f33f4fa4e 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/default.out +++ b/tests/scripts/dl_dep.sh/0.9.4/default.out @@ -1,12 +1,10 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4.0]' and flags '--recurse-submodules' Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept_clone3.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/default_zmq.out b/tests/scripts/dl_dep.sh/0.9.4/default_zmq.out index 01351e093ce8994a62139c6b1b0184610ec3f78c..a932e3f371372cfd537c41a61225ca05534ecfc4 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/default_zmq.out +++ b/tests/scripts/dl_dep.sh/0.9.4/default_zmq.out @@ -1,14 +1,12 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4.0]' and flags '--recurse-submodules' Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept_clone3.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Downloaded 'https://github.com/zeromq/libzmq/archive/v4.3.5.tar.gz' to 'libzmq' Downloaded 'https://github.com/zeromq/cppzmq/archive/v4.10.0.tar.gz' to 'cppzmq' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/infiniband_verbs.out b/tests/scripts/dl_dep.sh/0.9.4/infiniband_verbs.out index 970a2edd84a5e0a72edbafd1ea25ec7bc2e1c7d2..f19412d1b5179aa91a5512d16f55fa0d2526b712 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/infiniband_verbs.out +++ b/tests/scripts/dl_dep.sh/0.9.4/infiniband_verbs.out @@ -1,11 +1,10 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric%verbs' with commit '[HEAD]' and flags '--branch=v1.20.1' Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4.0]' and flags '--recurse-submodules' Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/marenostrum4.out b/tests/scripts/dl_dep.sh/0.9.4/marenostrum4.out index 1a8af2b9dee4dd4a492b31146be8f587b3dc124f..0297ebb52f43408d572afe04e2411bc6b5b35519 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/marenostrum4.out +++ b/tests/scripts/dl_dep.sh/0.9.4/marenostrum4.out @@ -1,5 +1,5 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Downloaded 'https://github.com/cornelisnetworks/opa-psm2/archive/PSM2_11.2.185.tar.gz' to 'psm2' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' @@ -7,8 +7,7 @@ Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4. Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Cloned 'https://github.com/HowardHinnant/date.git' to 'date' with commit '[e7e1482087f58913b80a20b04d5c58d9d6d90155]' and flags '' Cloned 'https://github.com/CARV-ICS-FORTH/parallax.git' to 'parallax' with commit '[c130decd7a71c60c20b98d6a23924f05f754c3cd]' and flags '' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/mogon2.out b/tests/scripts/dl_dep.sh/0.9.4/mogon2.out index 442b83681d8ec4094cabd5bf9d1c18e11babb1b6..9a13f8edd5575512aabd271b0a6ab365ab6c2b1c 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/mogon2.out +++ b/tests/scripts/dl_dep.sh/0.9.4/mogon2.out @@ -1,13 +1,12 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4.0]' and flags '--recurse-submodules' Downloaded 'https://github.com/pmodels/argobots/archive/v1.1.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.15.0]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Cloned 'https://github.com/HowardHinnant/date.git' to 'date' with commit '[e7e1482087f58913b80a20b04d5c58d9d6d90155]' and flags '' Downloaded 'https://github.com/cornelisnetworks/opa-psm2/archive/PSM2_11.2.185.tar.gz' to 'psm2' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/mogon3.out b/tests/scripts/dl_dep.sh/0.9.4/mogon3.out index 91c6a673959003ac214d0688fa6cc6ad99d49c92..c23ea4b22ebec6482a48365e682f365ba8a2a525 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/mogon3.out +++ b/tests/scripts/dl_dep.sh/0.9.4/mogon3.out @@ -1,12 +1,11 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4.0]' and flags '--recurse-submodules' Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Downloaded 'https://github.com/zeromq/libzmq/archive/v4.3.5.tar.gz' to 'libzmq' Downloaded 'https://github.com/zeromq/cppzmq/archive/v4.10.0.tar.gz' to 'cppzmq' -Done \ No newline at end of file +Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/ngio.out b/tests/scripts/dl_dep.sh/0.9.4/ngio.out index 1a8af2b9dee4dd4a492b31146be8f587b3dc124f..0297ebb52f43408d572afe04e2411bc6b5b35519 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/ngio.out +++ b/tests/scripts/dl_dep.sh/0.9.4/ngio.out @@ -1,5 +1,5 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Downloaded 'https://github.com/cornelisnetworks/opa-psm2/archive/PSM2_11.2.185.tar.gz' to 'psm2' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' @@ -7,8 +7,7 @@ Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4. Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.18.3]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Cloned 'https://github.com/HowardHinnant/date.git' to 'date' with commit '[e7e1482087f58913b80a20b04d5c58d9d6d90155]' and flags '' Cloned 'https://github.com/CARV-ICS-FORTH/parallax.git' to 'parallax' with commit '[c130decd7a71c60c20b98d6a23924f05f754c3cd]' and flags '' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/omnipath_psm2.out b/tests/scripts/dl_dep.sh/0.9.4/omnipath_psm2.out index 3d957553eb658a8af2061b3639662d3e176ef61a..3a16dbe94b3137c29f86953176b3ab0ed12741f9 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/omnipath_psm2.out +++ b/tests/scripts/dl_dep.sh/0.9.4/omnipath_psm2.out @@ -1,5 +1,5 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Downloaded 'https://github.com/cornelisnetworks/opa-psm2/archive/PSM2_11.2.185.tar.gz' to 'psm2' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1' @@ -7,7 +7,6 @@ Cloned 'https://github.com/mercury-hpc/mercury' to 'mercury' with commit '[v2.4. Downloaded 'https://github.com/pmodels/argobots/archive/v1.2.tar.gz' to 'argobots' Cloned 'https://github.com/mochi-hpc/mochi-margo' to 'margo' with commit '[v0.15.0]' and flags '' Downloaded 'https://github.com/facebook/rocksdb/archive/v8.10.0.tar.gz' to 'rocksdb' -Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[2c8765fa292bc9c28a22624c528580d54658813d]' and flags '' -Applying patch '/builds/gitlab/hpc/gekkofs/scripts/patches/syscall_intercept.patch'... +Cloned 'https://github.com/GekkoFS/syscall_intercept.git' to 'syscall_intercept' with commit '[d8b2a69961921ed123625c79a609331fc56a8931]' and flags '' Cloned 'https://github.com/HowardHinnant/date.git' to 'date' with commit '[e7e1482087f58913b80a20b04d5c58d9d6d90155]' and flags '' Done diff --git a/tests/scripts/dl_dep.sh/0.9.4/p9.out b/tests/scripts/dl_dep.sh/0.9.4/p9.out index e8e9a02df8df260eec57457010de7efbfa81a8c6..41c266305810aa100b23aeafdf063289c46ff157 100644 --- a/tests/scripts/dl_dep.sh/0.9.4/p9.out +++ b/tests/scripts/dl_dep.sh/0.9.4/p9.out @@ -1,5 +1,5 @@ Downloaded 'https://github.com/lz4/lz4/archive/v1.9.4.tar.gz' to 'lz4' -Downloaded 'https://github.com/aquynh/capstone/archive/4.0.2.tar.gz' to 'capstone' +Downloaded 'https://github.com/aquynh/capstone/archive/6.0.0-Alpha1.tar.gz' to 'capstone' Downloaded 'https://github.com/json-c/json-c/archive/json-c-0.17-20230812.tar.gz' to 'json-c' Downloaded 'https://github.com/cornelisnetworks/opa-psm2/archive/PSM2_11.2.185.tar.gz' to 'psm2' Cloned 'https://github.com/ofiwg/libfabric.git' to 'libfabric' with commit '[HEAD]' and flags '--branch=v1.20.1'