mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
24 lines
273 B
Bash
Executable file
24 lines
273 B
Bash
Executable file
#!/bin/sh -l
|
|
|
|
set -e
|
|
|
|
pwd
|
|
|
|
uname -a
|
|
|
|
du -s .
|
|
|
|
ls -lat
|
|
|
|
##./v test-all
|
|
|
|
## try running the known failing tests first to get faster feedback
|
|
./v test vlib/builtin/string_test.v vlib/strings/builder_test.v
|
|
|
|
./v test-cleancode
|
|
|
|
./v test-self
|
|
|
|
./v build-vbinaries
|
|
|
|
echo "DONE"
|