mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 23:24:09 +00:00
fix workflow to detect failing builds of individual samples
This commit is contained in:
parent
615319ad39
commit
92e4a54362
5 changed files with 3 additions and 30 deletions
2
.github/workflows/build-zig-11.yml
vendored
2
.github/workflows/build-zig-11.yml
vendored
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: Check zig version
|
||||
run: zig version
|
||||
- name: Build all examples
|
||||
run: ./build_all.sh
|
||||
run: zig build all
|
||||
# - name: Run all tests
|
||||
# run: zig build test
|
||||
# Run tests separately so we can see more clearly which one fails
|
||||
|
|
2
.github/workflows/mastercheck-localhost.yml
vendored
2
.github/workflows/mastercheck-localhost.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
sleep 3
|
||||
zig build
|
||||
- name: Build all examples
|
||||
run: ./build_all.sh
|
||||
run: zig build all
|
||||
- name: Run authentication tests
|
||||
run: zig build test-authentication
|
||||
- name: Run http parameter tests
|
||||
|
|
2
.github/workflows/mastercheck.yml
vendored
2
.github/workflows/mastercheck.yml
vendored
|
@ -25,6 +25,6 @@ jobs:
|
|||
- name: Check zig version
|
||||
run: zig version
|
||||
- name: Build all examples
|
||||
run: ./build_all.sh
|
||||
run: zig build all
|
||||
- name: Run all tests
|
||||
run: zig build test
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
for i in $(cat targets.txt) ; do
|
||||
echo "-------------------------------------------"
|
||||
echo $i $*
|
||||
zig build $i $*
|
||||
done
|
21
targets.txt
21
targets.txt
|
@ -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
|
Loading…
Add table
Reference in a new issue