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

25 lines
273 B
Bash
Raw Normal View History

2019-11-28 09:46:52 +01:00
#!/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
2019-11-28 09:46:52 +01:00
2019-12-01 14:12:51 +01:00
./v build-vbinaries
2019-11-28 09:46:52 +01:00
echo "DONE"