From ab2bc4ff21d793b929eddee9826346e459e47466 Mon Sep 17 00:00:00 2001 From: realaltffour <56314286+realaltffour@users.noreply.github.com> Date: Tue, 11 Aug 2020 17:58:10 +0300 Subject: [PATCH] ci: add muliple build configurations --- .github/workflows/CI.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8838152..c95fac3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,13 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v2 - - name: Build - run: cargo build + - name: Build Minimal + run: cargo build --no-default-features + - name: Build Client + run: cargo build --no-default-features "client" + - name: Build Server + run: cargo build --no-default-features "server" + - name: Build Hybrid + run: cargo build --no-default-features "server,client" - name: Run benches run: cargo bench