v/.github/workflows/alpine.test.sh

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"