mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
26 lines
296 B
Bash
Executable File
26 lines
296 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
set -e
|
|
|
|
pwd
|
|
|
|
uname -a
|
|
|
|
du -s .
|
|
|
|
ls -lat
|
|
|
|
##./v -silent test-all
|
|
|
|
## try running the known failing tests first to get faster feedback
|
|
./v vlib/builtin/string_test.v
|
|
./v vlib/strings/builder_test.v
|
|
|
|
./v -silent test-cleancode
|
|
|
|
./v -silent test-self
|
|
|
|
./v build-vbinaries
|
|
|
|
echo "DONE"
|