mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
Add workflow for testing clang and libc++ builds
This commit is contained in:
parent
db410a2ab2
commit
95b917b729
1 changed files with 10 additions and 0 deletions
10
.github/workflows/build-and-test.yml
vendored
10
.github/workflows/build-and-test.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue