diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fafa7c27..4a8026cf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - with: + with: submodules: true - name: make run: | @@ -22,18 +22,10 @@ jobs: runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v1 - with: + with: submodules: true - name: make run: | sudo apt-get install uuid-dev libcurl4-openssl-dev make - build-macos-latest: - runs-on: macos-latest - steps: - - uses: actions/checkout@v1 - with: - submodules: true - - name: make - run: make diff --git a/src/server.cpp b/src/server.cpp index 1f465927c..de049077f 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -5129,8 +5129,10 @@ void redisAsciiArt(void) { if (cserver.license_key == nullptr) { +#ifndef NO_LICENSE_CHECK serverLog(LL_WARNING, "!!!! KeyDB Pro is being run in trial mode !!!!"); serverLog(LL_WARNING, "!!!! Execution will terminate in %d minutes !!!!", cserver.trial_timeout); +#endif } zfree(buf); }