From 96f7d482d4e898c170636b3599799d04b74bfecc Mon Sep 17 00:00:00 2001 From: John Sully Date: Mon, 31 Jan 2022 18:43:54 -0500 Subject: [PATCH] Update ci.yml Change min tested version to 18.04 --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b50d41e6f..c0b60dd89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,3 +34,26 @@ jobs: - name: rotation test run: | ./runtest-rotation + + build-ubuntu-old: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v1 + - name: make -j2 + run: | + sudo apt-get update + sudo apt-get -y install uuid-dev libcurl4-openssl-dev + make -j2 + + build-macos-latest: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: make + run: make KEYDB_CFLAGS='-Werror' KEYDB_CXXFLAGS='-Werror' -j2 + + build-libc-malloc: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: make \ No newline at end of file