Add action to run validation on every commit
All checks were successful
Validate the build / Validate-With-Modern-Clang (push) Successful in 33s
All checks were successful
Validate the build / Validate-With-Modern-Clang (push) Successful in 33s
Adds some flags to the makefile to make it build on alpine with a different libc
This commit is contained in:
parent
5cdb60d395
commit
1ae20b9ee1
36
.gitea/workflows/validate.yaml
Normal file
36
.gitea/workflows/validate.yaml
Normal file
@ -0,0 +1,36 @@
|
||||
name: Validate the build
|
||||
run-name: ${{ gitea.actor }} is validating code with clang 19
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Validate-With-Modern-Clang:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: node:18-alpine
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apk add --no-cache git make bash
|
||||
|
||||
# Install LLVM/Clang 19 from edge repository
|
||||
echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories
|
||||
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
|
||||
|
||||
apk update
|
||||
apk add --no-cache llvm19 clang19 clang19-analyzer compiler-rt valgrind
|
||||
|
||||
# Verify versions
|
||||
echo "---------------------"
|
||||
echo "Clang version:"
|
||||
clang --version
|
||||
echo "---------------------"
|
||||
echo "Valgrind version:"
|
||||
valgrind --version
|
||||
echo "---------------------"
|
||||
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: make validate
|
||||
run: |
|
||||
make validate
|
2
Makefile
2
Makefile
@ -2,7 +2,7 @@
|
||||
|
||||
CC=clang
|
||||
LD=clang
|
||||
CFLAGS=-Wall -Wextra -Wpedantic -O0 -g3 -std=c23 -fno-omit-frame-pointer -fno-optimize-sibling-calls
|
||||
CFLAGS=-Wall -Wextra -Wpedantic -O0 -g3 -std=c23 -fno-omit-frame-pointer -fno-optimize-sibling-calls -D_POSIX_C_SOURCE=200809L
|
||||
LDFLAGS?=
|
||||
|
||||
SOURCES = $(shell find src/ -type f -name '*.c')
|
||||
|
Loading…
x
Reference in New Issue
Block a user