Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build-config.json « workflows « .github - github.com/asmjit/asmjit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c76bd030c6200d44f21e5b286c0256422f22bde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  "diagnostics": {
    "asan": { "definitions": ["ASMJIT_SANITIZE=address"] },
    "ubsan": { "definitions": ["ASMJIT_SANITIZE=undefined"] }
  },

  "valgrind_arguments": [
    "--leak-check=full",
    "--show-reachable=yes",
    "--track-origins=yes"
  ],

  "tests": [
    {
      "cmd": ["asmjit_test_unit", "--quick"],
      "optional": true
    },
    {
      "cmd": ["asmjit_test_assembler", "--quiet"],
      "optional": true
    },
    {
      "cmd": ["asmjit_test_emitters"],
      "optional": true
    },
    {
      "cmd": ["asmjit_test_compiler"],
      "optional": true
    },
    {
      "cmd": ["asmjit_test_instinfo"],
      "optional": true
    },
    {
      "cmd": ["asmjit_test_x86_sections"],
      "optional": true
    },
    {
      "cmd": ["asmjit_test_perf", "--quick"],
      "optional": true
    }
  ]
}