Add workflow for testing clang and libc++ builds

This commit is contained in:
0xC0ncord 2022-05-07 12:20:04 -04:00
parent db410a2ab2
commit 95b917b729

View file

@ -29,6 +29,16 @@ jobs:
run: apk update && apk add build-base python3 run: apk update && apk add build-base python3
- name: Build - name: Build
run: make test 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: build-ubuntu-gcc-aarch64:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: