v2 / .github / workflows / alpine.test.sh
25 lines · 14 sloc · 296 bytes · 8241f22116c82d17ff1c41a70f324ac187855a6a
Raw
1#!/bin/sh -l
2
3set -e
4
5pwd
6
7uname -a
8
9du -s .
10
11ls -lat
12
13##./v -silent test-all
14
15## try running the known failing tests first to get faster feedback
16./v vlib/builtin/string_test.v
17./v vlib/strings/builder_test.v
18
19./v -silent test-cleancode
20
21./v -silent test-self
22
23./v build-vbinaries
24
25echo "DONE"
26