From 9cd5b1bcc3ec48a187f83ae76bac42bfe67ededd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Fri, 3 May 2024 22:54:36 +0200 Subject: [PATCH] Fix GitHub CI feature flag issue --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e45e1f9..91ffc69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,15 +17,13 @@ jobs: - uses: actions/checkout@v3 - name: Install latest stable Rust uses: dtolnay/rust-toolchain@stable - - name: Install dependencies - run: sudo apt-get update -y && sudo apt-get install libhwloc-dev -y - name: Setup Rust dependency caching uses: Swatinem/rust-cache@v2 - name: Build run: | - cargo build --verbose -p aquatic_udp --features "cpu-pinning" + cargo build --verbose -p aquatic_udp cargo build --verbose -p aquatic_http - cargo build --verbose -p aquatic_ws --features "prometheus" + cargo build --verbose -p aquatic_ws build-macos: runs-on: macos-latest @@ -46,8 +44,6 @@ jobs: - uses: actions/checkout@v3 - name: Install latest stable Rust uses: dtolnay/rust-toolchain@stable - - name: Install dependencies - run: sudo apt-get update -y && sudo apt-get install libhwloc-dev -y - name: Setup Rust dependency caching uses: Swatinem/rust-cache@v2 - name: Run tests