Commit 15058743 authored by Ramon Nou's avatar Ramon Nou
Browse files

Define profiles

parent 6252c4d6
Loading
Loading
Loading
Loading
Loading
Compare 38d82118 to 0af45bfa
Changes for external/hermes: 1 added line, 1 removed line.
Original line number Diff line number Diff line
Subproject commit 38d821182ef2b6c6961595bf011ca69bf78bc936
Subproject commit 0af45bfa667f7ff9c78167ef94d975bffbd879f0
Compare eb322062 to eb322062
Changes for external/spdlog: 0 added lines, 1 removed line.
Original line number Diff line number Diff line
Subproject commit eb3220622e73a4889eee355ffa37972b3cac3df5
+1 −2
Changes for scripts/profiles/0.9.1/default.specs: 1 added line, 2 removed lines.
Original line number Diff line number Diff line
@@ -42,7 +42,6 @@ wgetdeps=(
    ["argobots"]="1.1"
    ["rocksdb"]="6.26.1"
    ["json-c"]="0.15-20200726"
    ["prometheus-cpp"]="v1.0.0"
)

# Dependencies that must be cloned
@@ -66,7 +65,7 @@ clonedeps_patches=(

# Ordering that MUST be followed when downloading
order=(
    "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" "prometheus-cpp"
    "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date"
)

# Extra arguments passed to the installation script. As such, they can
+1 −2
Changes for src/common/statistics/stats.cpp: 1 added line, 2 removed lines.
Original line number Diff line number Diff line
@@ -334,8 +334,7 @@ Stats::output(std::chrono::seconds d, std::string file_output) {
#endif
#ifdef GKFS_ENABLE_PROMETHEUS
        // Prometheus Output
        auto res = gateway->Push();
        std::cout << "result " << res << std::endl;
        gateway->Push();
#endif
        while(running and a < d) {
            a += 1s;
+1 −1
Changes for tests/integration/conftest.py: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ def gkfs_daemon_parallaxdb(test_workspace, request):
    yield daemon.run()
    daemon.shutdown()

@pytest.fixture(params=['gkfs_daemon_rocksdb', 'gkfs_daemon_parallaxdb'])
@pytest.fixture(params=['gkfs_daemon_rocksdb'])
def gkfs_daemon(request):
    return request.getfixturevalue(request.param)