1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00
QB64-PE/.ci/compile.sh
Roland Heyder 39a35626c1 Step 9: Update GitHub Actions
- rename build artifact names and distribution archive names
- this step completes file name related changes (based on extension, more may come based on "qb64" string)
2022-08-11 23:04:07 +02:00

23 lines
365 B
Bash
Executable file

#!/bin/bash
os=$1
./qb64pe_bootstrap -x -w source/qb64pe.bas
SUCCESS=$?
rm qb64pe_bootstrap
rm internal/source/*
rm internal/temp/debug_* internal/temp/recompile_*
rm internal/temp/qb64pe.sym
rm internal/temp/qb64pe_bootstrap.sym
mv internal/temp/* internal/source/
# Build libqb test executables
make -j8 OS=$os build-tests
make clean OS=$os
exit $SUCCESS