1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/.github/workflows/alpine.test.sh

25 lines
273 B
Bash
Raw Normal View History

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