Send back to true and remove .pdb from release

This commit is contained in:
Adrien Bouvais 2025-01-12 19:08:34 +01:00
parent 35ca253dad
commit 6ccfc7feb9
2 changed files with 4 additions and 11 deletions

View File

@ -24,19 +24,12 @@ jobs:
run: | run: |
zig build release zig build release
- name: List directory contents
run: |
echo "Current directory:"
ls -R
echo "zig-out directory:"
ls -R zig-out
- name: Create zip files for release artifacts - name: Create zip files for release artifacts
run: | run: |
mkdir -p zig-out/release/zips mkdir -p zig-out/release/zips
for file in zig-out/release/*; do for file in zig-out/release/*; do
if [ -f "$file" ]; then if [ -f "$file" ] && [[ "$(basename "$file")" != *.pdb ]]; then
zip -j "zig-out/release/zips/${file##*/}.zip" "$file" zip -j "zig-out/release/zips/$(basename "$file").zip" "$file"
fi fi
done done

View File

@ -4,7 +4,7 @@ pub const CPU_CORE = 16;
// Debug // Debug
pub const PRINT_STATE = false; pub const PRINT_STATE = false;
pub const DONT_SEND = true; pub const DONT_SEND = false;
pub const DONT_SEND_ERROR = false; pub const DONT_SEND_ERROR = false;
pub const RESET_LOG_AT_RESTART = false; // If true, will reset the log file at the start of the db, otherwise just keep adding to it pub const RESET_LOG_AT_RESTART = false; // If true, will reset the log file at the start of the db, otherwise just keep adding to it