v / .github / workflows
Raw file | 24 loc (13 sloc) | 273 bytes | Latest commit hash da42f0d42
1#!/bin/sh -l
2
3set -e
4
5pwd
6
7uname -a
8
9du -s .
10
11ls -lat
12
13##./v test-all
14
15## try running the known failing tests first to get faster feedback
16./v test vlib/builtin/string_test.v vlib/strings/builder_test.v
17
18./v test-cleancode
19
20./v test-self
21
22./v build-vbinaries
23
24echo "DONE"