From 1beb2f94310f2b1ec122278cc88ae53a3eb21a57 Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 28 Jul 2023 13:47:22 +0200 Subject: [PATCH 1/4] docker: Freeze image for `0.3.0` --- docker/0.2.0-wip-debug/Dockerfile | 170 ------------------ docker/0.2.0-wip-debug/Makefile | 4 - .../patches/mochi-thallium.patch | 85 --------- docker/0.2.0-wip/Makefile | 4 - docker/0.2.0-wip/patches/mochi-thallium.patch | 85 --------- docker/{0.2.0-wip => 0.3.0}/Dockerfile | 0 docker/0.3.0/Makefile | 4 + 7 files changed, 4 insertions(+), 348 deletions(-) delete mode 100644 docker/0.2.0-wip-debug/Dockerfile delete mode 100644 docker/0.2.0-wip-debug/Makefile delete mode 100644 docker/0.2.0-wip-debug/patches/mochi-thallium.patch delete mode 100644 docker/0.2.0-wip/Makefile delete mode 100644 docker/0.2.0-wip/patches/mochi-thallium.patch rename docker/{0.2.0-wip => 0.3.0}/Dockerfile (100%) create mode 100644 docker/0.3.0/Makefile diff --git a/docker/0.2.0-wip-debug/Dockerfile b/docker/0.2.0-wip-debug/Dockerfile deleted file mode 100644 index 0caa65c0..00000000 --- a/docker/0.2.0-wip-debug/Dockerfile +++ /dev/null @@ -1,170 +0,0 @@ -FROM debian:testing-slim - -LABEL Description="Debian-based environment suitable to build scord" - -ENV DEPS_INSTALL_PATH /usr/local - -RUN apt-get update && \ - apt-get install -y --no-install-recommends \ - git \ - curl \ - ca-certificates \ - libtool \ - pkg-config \ - make \ - automake \ - gcc \ - g++ \ - g++-11 \ - vim \ - gdb \ - procps \ - # AGIOS dependencies - libconfig-dev \ - # Mercury dependencies - libltdl-dev \ - lbzip2 \ - # Margo dependencies \ - libjson-c-dev \ - # GekkoFS dependencies - libboost-program-options-dev \ - uuid-dev \ - python3 \ - libyaml-dev libcurl4-openssl-dev procps \ - # genopts dependencies - python3-venv \ - # redis-plus-plus dependencies \ - libhiredis-dev \ - # tests dependencies \ - python3-pip && \ - ### install cmake 3.23.1 ################################################### - curl -OL https://github.com/Kitware/CMake/releases/download/v3.23.1/cmake-3.23.1-Linux-x86_64.sh && \ - chmod u+x ./cmake-3.23.1-Linux-x86_64.sh && \ - ./cmake-3.23.1-Linux-x86_64.sh --skip-license --prefix=${DEPS_INSTALL_PATH} && \ - rm ./cmake-3.23.1-Linux-x86_64.sh && \ - ########################################################################### - ### DEPENDENCIES - ########################################################################### \ - cd && \ - mkdir deps && cd deps && \ - git clone https://github.com/jbeder/yaml-cpp --recurse-submodules && \ - git clone https://github.com/json-c/json-c --recurse-submodules && \ - git clone https://github.com/ofiwg/libfabric --recurse-submodules && \ - git clone https://github.com/pmodels/argobots --recurse-submodules && \ - git clone https://github.com/mercury-hpc/mercury --recurse-submodules && \ - git clone https://github.com/mochi-hpc/mochi-margo --recurse-submodules && \ -# cd mochi-margo && git reset --hard v0.9.9 && cd .. && \ - git clone https://github.com/sewenew/redis-plus-plus --recurse-submodules && \ - git clone https://github.com/francielizanon/agios --recurse-submodules && \ - cd agios && git checkout development && cd .. && \ - git clone https://github.com/USCiLab/cereal --recurse-submodules && \ - git clone https://github.com/mochi-hpc/mochi-thallium --recurse-submodules && \ - cd mochi-thallium && \ - export LD_LIBRARY_PATH=${DEPS_INSTALL_PATH}/lib:${DEPS_INSTALL_PATH}/lib64 && \ - export PKG_CONFIG_PATH=${DEPS_INSTALL_PATH}/lib/pkgconfig:${DEPS_INSTALL_PATH}/lib64/pkgconfig && \ - cd && \ - \ - ### yaml-cpp - cd deps/yaml-cpp && \ - mkdir build && cd build && \ - cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - -DYAML_CPP_BUILD_TESTS=OFF \ - .. && \ - make -j install && \ - cd .. && rm -rf build && cd && \ - \ - ### argobots - cd deps/argobots && \ - ./autogen.sh && \ - mkdir build && cd build && \ - CFLAGS="-ggdb3 -O0" ../configure --prefix=${DEPS_INSTALL_PATH} && \ - make install -j && \ - cd .. && rm -rf build && cd && \ - cd deps/libfabric && \ - \ - ### libfabric - ./autogen.sh && \ - mkdir build && cd build && \ - CFLAGS="-ggdb3 -O0" ../configure --prefix=${DEPS_INSTALL_PATH} && \ - make install -j && \ - cd .. && rm -rf build && cd && \ - \ - ### mercury - cd deps/mercury && \ - mkdir build && cd build && \ - cmake -DMERCURY_USE_SELF_FORWARD:BOOL=ON \ - -DBUILD_TESTING:BOOL=ON \ - -DMERCURY_USE_BOOST_PP:BOOL=ON \ - -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - -DBUILD_SHARED_LIBS:BOOL=ON \ - -DNA_USE_OFI:BOOL=ON \ - -DCMAKE_POSITION_INDEPENDENT_CODE=ON \ - -DCMAKE_BUILD_TYPE:STRING=Debug \ - .. && \ - make install -j && \ - cd .. && rm -rf build && cd && \ - \ - ### json-c - cd deps/json-c && \ - mkdir build && cd build && \ - cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - .. && \ - make install -j && \ - cd .. && rm -rf build && cd && \ - \ - ### mochi-margo - cd deps/mochi-margo && \ - ./prepare.sh && \ - mkdir build && cd build && \ - CFLAGS="-ggdb3 -O0" ../configure --prefix=${DEPS_INSTALL_PATH} && \ - make -j install && \ - cd .. && rm -rf build && cd && \ - \ - ### redis-plus-plus - cd deps/redis-plus-plus && \ - mkdir build && cd build && \ - cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - -DCMAKE_BUILD_TYPE:STRING=Debug \ - .. && \ - make install -j && \ - cd .. && rm -rf build && cd && \ - \ - ### agios - cd deps/agios && \ - mkdir build && cd build && \ - cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - -DCMAKE_BUILD_TYPE:STRING=Debug \ - .. && \ - make install -j && \ - cd .. && rm -rf build && cd && \ - \ - ### cereal - cd deps/cereal && \ - mkdir build && cd build && \ - cmake -DCMAKE_BUILD_TYPE:STRING=Debug \ - -DBUILD_DOC:BOOL=OFF \ - -DBUILD_SANDBOX:BOOL=OFF \ - -DBUILD_TESTS:BOOL=OFF \ - -DSKIP_PERFORMANCE_COMPARISON:BOOL=ON \ - -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - .. && \ - make -j install && \ - cd .. && rm -rf build && cd && \ - \ - ### mochi-thallium - cd deps/mochi-thallium && \ - mkdir build && cd build && \ - cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ - -DCMAKE_BUILD_TYPE:STRING=Debug \ - .. && \ - make -j install && \ - cd .. && rm -rf build && cd && \ - \ - ### python packages for testing scripts\ - pip install lark loguru && \ - \ - ### Cleanup - # Clean apt cache to reduce image layer size - rm -rf /var/lib/apt/lists/* && \ - # Clean apt caches of packages - apt-get clean && apt-get autoclean diff --git a/docker/0.2.0-wip-debug/Makefile b/docker/0.2.0-wip-debug/Makefile deleted file mode 100644 index 83601860..00000000 --- a/docker/0.2.0-wip-debug/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -.PHONY: all - -all: - docker build -t bscstorage/scord:0.2.0-wip-debug . diff --git a/docker/0.2.0-wip-debug/patches/mochi-thallium.patch b/docker/0.2.0-wip-debug/patches/mochi-thallium.patch deleted file mode 100644 index f9ba1f73..00000000 --- a/docker/0.2.0-wip-debug/patches/mochi-thallium.patch +++ /dev/null @@ -1,85 +0,0 @@ -diff --git a/include/thallium/packed_data.hpp b/include/thallium/packed_data.hpp -index 9e6e76e..37e64d3 100644 ---- a/include/thallium/packed_data.hpp -+++ b/include/thallium/packed_data.hpp -@@ -14,13 +14,13 @@ - - namespace thallium { - --template class callable_remote_procedure_with_context; -+template class callable_remote_procedure_with_context; - class async_response; --template class request_with_context; -+template class request_with_context; - using request = request_with_context<>; - - namespace detail { -- struct engine_impl; -+struct engine_impl; - } - - /** -@@ -36,9 +36,9 @@ class packed_data { - - private: - std::weak_ptr m_engine_impl; -- hg_handle_t m_handle = HG_HANDLE_NULL; -- hg_return_t (*m_unpack_fn)(hg_handle_t,void*) = nullptr; -- hg_return_t (*m_free_fn)(hg_handle_t,void*) = nullptr; -+ hg_handle_t m_handle = HG_HANDLE_NULL; -+ hg_return_t (*m_unpack_fn)(hg_handle_t, void*) = nullptr; -+ hg_return_t (*m_free_fn)(hg_handle_t, void*) = nullptr; - mutable std::tuple m_context; - - /** -@@ -62,6 +62,41 @@ class packed_data { - MARGO_ASSERT(ret, margo_ref_incr); - } - -+ packed_data(const packed_data&) = delete; -+ packed_data& operator=(const packed_data&) = delete; -+ -+ packed_data(packed_data&& rhs) -+ : m_engine_impl(std::move(rhs.m_engine_impl), -+ m_context(std::move(rhs.m_context))) { -+ m_handle = rhs.m_handle; -+ rhs.m_handle = HG_HANDLE_NULL; -+ m_unpack_fn = rhs.m_unpack_fn; -+ rhs.m_unpack_fn = nullptr; -+ m_free_fn = rhs.m_free_fn; -+ rhs.m_free_fn = nullptr; -+ } -+ -+ packed_data& operator=(packed_data&& rhs) { -+ -+ if(&rhs == this) { -+ return *this; -+ } -+ -+ // the original members m_handle, m_context, and m_handle are being -+ // replaced here by the ones from rhs. It may be necessary to release -+ // their resources if `packed_data` has claimed ownership over them, -+ // otherwise we would be leaking -+ m_engine_impl = std::move(rhs.m_engine_impl); -+ m_context = std::move(rhs.m_context); -+ -+ m_handle = rhs.m_handle; -+ rhs.m_handle = HG_HANDLE_NULL; -+ m_unpack_fn = rhs.m_unpack_fn; -+ rhs.m_unpack_fn = nullptr; -+ m_free_fn = rhs.m_free_fn; -+ rhs.m_free_fn = nullptr; -+ } -+ - packed_data() = default; - - public: -@@ -78,7 +113,7 @@ class packed_data { - * @tparam NewCtxArg Types of the serialization context. - * @param args Context. - */ -- template -+ template - auto with_serialization_context(NewCtxArg&&... args) { - return packed_data...>( - m_unpack_fn, m_free_fn, m_handle, m_engine_impl, diff --git a/docker/0.2.0-wip/Makefile b/docker/0.2.0-wip/Makefile deleted file mode 100644 index 67260f17..00000000 --- a/docker/0.2.0-wip/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -.PHONY: all - -all: - docker build -t bscstorage/scord:0.2.0-wip . diff --git a/docker/0.2.0-wip/patches/mochi-thallium.patch b/docker/0.2.0-wip/patches/mochi-thallium.patch deleted file mode 100644 index f9ba1f73..00000000 --- a/docker/0.2.0-wip/patches/mochi-thallium.patch +++ /dev/null @@ -1,85 +0,0 @@ -diff --git a/include/thallium/packed_data.hpp b/include/thallium/packed_data.hpp -index 9e6e76e..37e64d3 100644 ---- a/include/thallium/packed_data.hpp -+++ b/include/thallium/packed_data.hpp -@@ -14,13 +14,13 @@ - - namespace thallium { - --template class callable_remote_procedure_with_context; -+template class callable_remote_procedure_with_context; - class async_response; --template class request_with_context; -+template class request_with_context; - using request = request_with_context<>; - - namespace detail { -- struct engine_impl; -+struct engine_impl; - } - - /** -@@ -36,9 +36,9 @@ class packed_data { - - private: - std::weak_ptr m_engine_impl; -- hg_handle_t m_handle = HG_HANDLE_NULL; -- hg_return_t (*m_unpack_fn)(hg_handle_t,void*) = nullptr; -- hg_return_t (*m_free_fn)(hg_handle_t,void*) = nullptr; -+ hg_handle_t m_handle = HG_HANDLE_NULL; -+ hg_return_t (*m_unpack_fn)(hg_handle_t, void*) = nullptr; -+ hg_return_t (*m_free_fn)(hg_handle_t, void*) = nullptr; - mutable std::tuple m_context; - - /** -@@ -62,6 +62,41 @@ class packed_data { - MARGO_ASSERT(ret, margo_ref_incr); - } - -+ packed_data(const packed_data&) = delete; -+ packed_data& operator=(const packed_data&) = delete; -+ -+ packed_data(packed_data&& rhs) -+ : m_engine_impl(std::move(rhs.m_engine_impl), -+ m_context(std::move(rhs.m_context))) { -+ m_handle = rhs.m_handle; -+ rhs.m_handle = HG_HANDLE_NULL; -+ m_unpack_fn = rhs.m_unpack_fn; -+ rhs.m_unpack_fn = nullptr; -+ m_free_fn = rhs.m_free_fn; -+ rhs.m_free_fn = nullptr; -+ } -+ -+ packed_data& operator=(packed_data&& rhs) { -+ -+ if(&rhs == this) { -+ return *this; -+ } -+ -+ // the original members m_handle, m_context, and m_handle are being -+ // replaced here by the ones from rhs. It may be necessary to release -+ // their resources if `packed_data` has claimed ownership over them, -+ // otherwise we would be leaking -+ m_engine_impl = std::move(rhs.m_engine_impl); -+ m_context = std::move(rhs.m_context); -+ -+ m_handle = rhs.m_handle; -+ rhs.m_handle = HG_HANDLE_NULL; -+ m_unpack_fn = rhs.m_unpack_fn; -+ rhs.m_unpack_fn = nullptr; -+ m_free_fn = rhs.m_free_fn; -+ rhs.m_free_fn = nullptr; -+ } -+ - packed_data() = default; - - public: -@@ -78,7 +113,7 @@ class packed_data { - * @tparam NewCtxArg Types of the serialization context. - * @param args Context. - */ -- template -+ template - auto with_serialization_context(NewCtxArg&&... args) { - return packed_data...>( - m_unpack_fn, m_free_fn, m_handle, m_engine_impl, diff --git a/docker/0.2.0-wip/Dockerfile b/docker/0.3.0/Dockerfile similarity index 100% rename from docker/0.2.0-wip/Dockerfile rename to docker/0.3.0/Dockerfile diff --git a/docker/0.3.0/Makefile b/docker/0.3.0/Makefile new file mode 100644 index 00000000..10b8e455 --- /dev/null +++ b/docker/0.3.0/Makefile @@ -0,0 +1,4 @@ +.PHONY: all + +all: + docker build -t bscstorage/scord:0.3.0 . -- GitLab From a33b0ad3c56f0840616a542d9e57f0791720a7a2 Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 28 Jul 2023 13:47:48 +0200 Subject: [PATCH 2/4] docker: Create image for `0.4.0-wip` --- docker/0.4.0-wip/Dockerfile | 171 ++++++++++++++++++++++++++++++++++++ docker/0.4.0-wip/Makefile | 4 + 2 files changed, 175 insertions(+) create mode 100644 docker/0.4.0-wip/Dockerfile create mode 100644 docker/0.4.0-wip/Makefile diff --git a/docker/0.4.0-wip/Dockerfile b/docker/0.4.0-wip/Dockerfile new file mode 100644 index 00000000..fea5b4d9 --- /dev/null +++ b/docker/0.4.0-wip/Dockerfile @@ -0,0 +1,171 @@ +FROM debian:bullseye-slim + +LABEL Description="Debian-based environment suitable to build scord" + +ENV DEPS_INSTALL_PATH /usr/local + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + git \ + curl \ + ca-certificates \ + libtool \ + pkg-config \ + make \ + automake \ + gcc \ + g++ \ + clang \ + libc++-dev \ + procps \ + # AGIOS dependencies + libconfig-dev \ + # Mercury dependencies + libltdl-dev \ + lbzip2 \ + # Margo dependencies \ + libjson-c-dev \ + # GekkoFS dependencies + libboost-program-options-dev \ + uuid-dev \ + python3 \ + libyaml-dev libcurl4-openssl-dev procps \ + # genopts dependencies + python3-venv \ + # redis-plus-plus dependencies \ + libhiredis-dev \ + # Slurm plugin dependencies \ + libslurm-dev \ + # tests dependencies \ + python3-pip && \ + ### install cmake 3.23.1 ################################################### + curl -OL https://github.com/Kitware/CMake/releases/download/v3.23.1/cmake-3.23.1-Linux-x86_64.sh && \ + chmod u+x ./cmake-3.23.1-Linux-x86_64.sh && \ + ./cmake-3.23.1-Linux-x86_64.sh --skip-license --prefix=${DEPS_INSTALL_PATH} && \ + rm ./cmake-3.23.1-Linux-x86_64.sh && \ + ########################################################################### + ### DEPENDENCIES + ########################################################################### \ + cd && \ + mkdir deps && cd deps && \ + git clone https://github.com/jbeder/yaml-cpp --recurse-submodules && \ + git clone https://github.com/json-c/json-c --recurse-submodules && \ + git clone https://github.com/ofiwg/libfabric --recurse-submodules && \ + git clone https://github.com/pmodels/argobots --recurse-submodules && \ + git clone https://github.com/mercury-hpc/mercury --recurse-submodules && \ + git clone https://github.com/mochi-hpc/mochi-margo --recurse-submodules && \ +# cd mochi-margo && git reset --hard v0.9.9 && cd .. && \ + git clone https://github.com/sewenew/redis-plus-plus --recurse-submodules && \ + git clone https://github.com/francielizanon/agios --recurse-submodules && \ + cd agios && git checkout development && cd .. && \ + git clone https://github.com/USCiLab/cereal --recurse-submodules && \ + git clone https://github.com/mochi-hpc/mochi-thallium --recurse-submodules && \ + cd mochi-thallium && \ + export LD_LIBRARY_PATH=${DEPS_INSTALL_PATH}/lib:${DEPS_INSTALL_PATH}/lib64 && \ + export PKG_CONFIG_PATH=${DEPS_INSTALL_PATH}/lib/pkgconfig:${DEPS_INSTALL_PATH}/lib64/pkgconfig && \ + cd && \ + \ + ### yaml-cpp + cd deps/yaml-cpp && \ + mkdir build && cd build && \ + cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + -DYAML_CPP_BUILD_TESTS=OFF \ + .. && \ + make -j install && \ + cd .. && rm -rf build && cd && \ + \ + ### argobots + cd deps/argobots && \ + ./autogen.sh && \ + mkdir build && cd build && \ + ../configure --prefix=${DEPS_INSTALL_PATH} && \ + make install -j && \ + cd .. && rm -rf build && cd && \ + cd deps/libfabric && \ + \ + ### libfabric + ./autogen.sh && \ + mkdir build && cd build && \ + ../configure --prefix=${DEPS_INSTALL_PATH} && \ + make install -j && \ + cd .. && rm -rf build && cd && \ + \ + ### mercury + cd deps/mercury && \ + mkdir build && cd build && \ + cmake -DMERCURY_USE_SELF_FORWARD:BOOL=ON \ + -DBUILD_TESTING:BOOL=ON \ + -DMERCURY_USE_BOOST_PP:BOOL=ON \ + -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + -DBUILD_SHARED_LIBS:BOOL=ON \ + -DNA_USE_OFI:BOOL=ON \ + -DCMAKE_POSITION_INDEPENDENT_CODE=ON \ + -DCMAKE_BUILD_TYPE:STRING=Release \ + .. && \ + make install -j && \ + cd .. && rm -rf build && cd && \ + \ + ### json-c + cd deps/json-c && \ + mkdir build && cd build && \ + cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + .. && \ + make install -j && \ + cd .. && rm -rf build && cd && \ + \ + ### mochi-margo + cd deps/mochi-margo && \ + ./prepare.sh && \ + mkdir build && cd build && \ + ../configure --prefix=${DEPS_INSTALL_PATH} && \ + make -j install && \ + cd .. && rm -rf build && cd && \ + \ + ### redis-plus-plus + cd deps/redis-plus-plus && \ + mkdir build && cd build && \ + cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + -DCMAKE_BUILD_TYPE:STRING=Release \ + .. && \ + make install -j && \ + cd .. && rm -rf build && cd && \ + \ + ### agios + cd deps/agios && \ + mkdir build && cd build && \ + cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + -DCMAKE_BUILD_TYPE:STRING=Release \ + .. && \ + make install -j && \ + cd .. && rm -rf build && cd && \ + \ + ### cereal + cd deps/cereal && \ + mkdir build && cd build && \ + cmake -DCMAKE_BUILD_TYPE:STRING=Release \ + -DBUILD_DOC:BOOL=OFF \ + -DBUILD_SANDBOX:BOOL=OFF \ + -DBUILD_TESTS:BOOL=OFF \ + -DSKIP_PERFORMANCE_COMPARISON:BOOL=ON \ + -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + .. && \ + make -j install && \ + cd .. && rm -rf build && cd && \ + \ + ### mochi-thallium + cd deps/mochi-thallium && \ + mkdir build && cd build && \ + cmake -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_PATH} \ + -DCMAKE_BUILD_TYPE:STRING=Release \ + .. && \ + make -j install && \ + cd .. && rm -rf build && cd && \ + \ + ### python packages for testing scripts\ + pip install lark loguru && \ + \ + ### Cleanup + # Clean apt cache to reduce image layer size + rm -rf /var/lib/apt/lists/* && \ + # Clean apt caches of packages + apt-get clean && apt-get autoclean diff --git a/docker/0.4.0-wip/Makefile b/docker/0.4.0-wip/Makefile new file mode 100644 index 00000000..6596372e --- /dev/null +++ b/docker/0.4.0-wip/Makefile @@ -0,0 +1,4 @@ +.PHONY: all + +all: + docker build -t bscstorage/scord:0.4.0-wip . -- GitLab From 7fa31c77bf39a1b4aa4f7563bbf0a43f54204456 Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 28 Jul 2023 13:51:23 +0200 Subject: [PATCH 3/4] CI: Set default docker image to `0.3.0` --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a260711c..8dd76465 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ # Compilation of scord and execution of tests -image: bscstorage/scord:0.2.0-wip +image: bscstorage/scord:0.3.0 stages: - build -- GitLab From 94b6801ba510e07ec7a89ca2b160e5198ce0f8bb Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 28 Jul 2023 14:12:00 +0200 Subject: [PATCH 4/4] CMake: Bump version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b0d5385e..97c3dafb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ cmake_minimum_required(VERSION 3.19) project( scord - VERSION 0.2.2 + VERSION 0.3.0 LANGUAGES C CXX ) -- GitLab