mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
25 lines
273 B
Bash
Executable File
25 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"
|