diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bd3d6358..18ba339f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -85,14 +85,14 @@ jobs: - name: Prepare CentOS 7 tools run: | yum install -y epel-release - yum install -y git cmake gcc gcc-c++ libstdc++-static make openssl-devel libmicrohttpd-devel libuv-devel + yum install -y git cmake gcc gcc-c++ libstdc++-static make openssl-devel libmicrohttpd-devel libuv-devel glibc-static libuv-static - name: Checkout code run: | git clone https://github.com/MoneroOcean/xmrig.git . git checkout ${GITHUB_REF:10} - name: Build project on CentOS 7 run: | - cmake . -DWITH_TLS=OFF -DWITH_HWLOC=OFF + cmake . -DWITH_TLS=OFF -DWITH_HWLOC=OFF -DBUILD_STATIC=ON make -j$(nproc) cp src/config.json . mv xmrig-notls xmrig diff --git a/src/version.h b/src/version.h index 0f37c074..cedacd2e 100644 --- a/src/version.h +++ b/src/version.h @@ -28,7 +28,7 @@ #define APP_ID "xmrig" #define APP_NAME "XMRig" #define APP_DESC "XMRig miner" -#define APP_VERSION "6.7.2-mo1" +#define APP_VERSION "6.7.2-mo2" #define APP_DOMAIN "xmrig.com" #define APP_SITE "www.xmrig.com" #define APP_COPYRIGHT "Copyright (C) 2016-2021 xmrig.com"