1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-21 07:34:08 +00:00

fix workflow to detect failing builds of individual samples

This commit is contained in:
Rene Schallner 2024-02-23 12:07:26 +01:00
parent 615319ad39
commit 92e4a54362
5 changed files with 3 additions and 30 deletions

View file

@ -22,7 +22,7 @@ jobs:
- name: Check zig version - name: Check zig version
run: zig version run: zig version
- name: Build all examples - name: Build all examples
run: ./build_all.sh run: zig build all
# - name: Run all tests # - name: Run all tests
# run: zig build test # run: zig build test
# Run tests separately so we can see more clearly which one fails # Run tests separately so we can see more clearly which one fails

View file

@ -37,7 +37,7 @@ jobs:
sleep 3 sleep 3
zig build zig build
- name: Build all examples - name: Build all examples
run: ./build_all.sh run: zig build all
- name: Run authentication tests - name: Run authentication tests
run: zig build test-authentication run: zig build test-authentication
- name: Run http parameter tests - name: Run http parameter tests

View file

@ -25,6 +25,6 @@ jobs:
- name: Check zig version - name: Check zig version
run: zig version run: zig version
- name: Build all examples - name: Build all examples
run: ./build_all.sh run: zig build all
- name: Run all tests - name: Run all tests
run: zig build test run: zig build test

View file

@ -1,6 +0,0 @@
#!/usr/bin/env bash
for i in $(cat targets.txt) ; do
echo "-------------------------------------------"
echo $i $*
zig build $i $*
done

View file

@ -1,21 +0,0 @@
hello
hello2
routes
serve
hello_json
endpoint
wrk
wrk_zigstd
mustache
endpoint_auth
http_params
pkghash
cookies
websockets
userpass_session
sendfile
middleware
middleware_with_endpoint
senderror
bindataformpost
announceybot