From 36dccbc0c977a67cfa806fa33ad801f6124f44bf Mon Sep 17 00:00:00 2001 From: Eric Veilleux Date: Tue, 21 Nov 2023 16:35:49 -0500 Subject: [PATCH] Update build-and-test.yaml --- .github/workflows/build-and-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 85228c3..3406124 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -16,11 +16,11 @@ jobs: features: [ all, no, default ] include: - os: windows-latest - compiler: cl.exe + compiler: g++ - os: macos-latest compiler: clang++ - os: ubuntu-latest - compiler: g++ + compiler: clang++ - features: all features_arg: --all-features - features: no @@ -51,7 +51,7 @@ jobs: - name: Update clang (Ubuntu) if: matrix.os == 'ubuntu-latest' shell: bash - run: sudo apt install clang-15 -y + run: sudo apt install libclang-dev -y - name: Build project run: cargo build ${{ matrix.features_arg }} env: