From d5ed1b91685f847ca2628771874efca5ec397edc Mon Sep 17 00:00:00 2001 From: John Sully Date: Fri, 29 May 2020 01:01:41 -0400 Subject: [PATCH] Fix CI Former-commit-id: 6a902b29e16bebdb2da1d0a33ea5a170fc9949a0 --- .github/workflows/ci.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d00735988..ee2235e2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: - name: make -j2 run: | sudo apt-get -y install uuid-dev libcurl4-openssl-dev - make + make -j2 build-macos-latest: runs-on: macos-latest @@ -61,19 +61,12 @@ jobs: - name: make run: make -j2 - biuld-32bit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: make - run: | - sudo apt-get update && sudo apt-get install libc6-dev-i386 - make 32bit - build-libc-malloc: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: make - run: make MALLOC=libc + run: | + sudo apt-get -y install uuid-dev libcurl4-openssl-dev + make MALLOC=libc -j2