CI should work now...
Some checks failed
/ Build the server (push) Failing after 5m24s

This commit is contained in:
Mutzi 2024-04-24 13:36:29 +02:00
parent 3ab85075df
commit c8d620da3a
Signed by: root
GPG Key ID: 2437494E09F13876
2 changed files with 8 additions and 1 deletions

View File

@ -8,7 +8,7 @@ jobs:
container:
node:current-alpine
steps:
- run: apk add git tar cmake make g++ linux-headers python3 xxd liburing-dev
- run: apk add git tar cmake make g++ linux-headers python3 xxd
- uses: actions/checkout@v3
- run: npm ci
working-directory: frontend

View File

@ -32,7 +32,14 @@ CPMAddPackage(
)
if(uring_ADDED)
add_custom_command(
OUTPUT ${uring_SOURCE_DIR}/include/liburing/compat.h
COMMAND ${uring_SOURCE_DIR}/configure
WORKING_DIRECTORY ${uring_SOURCE_DIR}
)
add_library(uring STATIC
${uring_SOURCE_DIR}/include/liburing/compat.h
${uring_SOURCE_DIR}/src/setup.c
${uring_SOURCE_DIR}/src/queue.c
${uring_SOURCE_DIR}/src/register.c