From 95b917b72912f631ad3b63bdbbc7416849dc0025 Mon Sep 17 00:00:00 2001 From: 0xC0ncord Date: Sat, 7 May 2022 12:20:04 -0400 Subject: [PATCH] Add workflow for testing clang and libc++ builds --- .github/workflows/build-and-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e15a52a..0217031 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -29,6 +29,16 @@ jobs: run: apk update && apk add build-base python3 - name: Build run: make test + build-clang-libcxx: + runs-on: ubuntu-latest + container: + image: fedora:latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: dnf install -y clang libcxx libcxx-devel + - name: Build + run: CC=clang CXX=clang++ make CONFIG_USE_LIBCXX=true build-ubuntu-gcc-aarch64: runs-on: ubuntu-latest steps: