-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
78 lines (74 loc) · 2.17 KB
/
native_backend_ci.yml
File metadata and controls
78 lines (74 loc) · 2.17 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: native backend CI
on:
push:
paths:
- '!**'
- '!**.md'
- 'vlib/v/gen/native/'
- 'cmd/tools/builders/**.v'
- 'vlib/builtin/**.v'
- 'vlib/v/ast/**.v'
- 'vlib/v/scanner/**.v'
- 'vlib/v/parser/**.v'
- 'vlib/v/checker/**.v'
- 'vlib/v/gen/c/**.v'
- 'vlib/v/builder/**.v'
- 'vlib/v/cflag/**.v'
- 'vlib/v/live/**.v'
- 'vlib/v/util/**.v'
- 'vlib/v/markused/**.v'
- 'vlib/v/preludes/**.v'
- 'vlib/v/gen/native/**.v'
- 'vlib/v/gen/native/tests/**.v'
- '.github/workflows/native_backend_ci.yml'
pull_request:
paths:
- '!**'
- '!**.md'
- 'vlib/v/gen/native/'
- 'cmd/tools/builders/**.v'
- 'vlib/builtin/**.v'
- 'vlib/v/ast/**.v'
- 'vlib/v/scanner/**.v'
- 'vlib/v/parser/**.v'
- 'vlib/v/checker/**.v'
- 'vlib/v/gen/c/**.v'
- 'vlib/v/builder/**.v'
- 'vlib/v/cflag/**.v'
- 'vlib/v/live/**.v'
- 'vlib/v/util/**.v'
- 'vlib/v/markused/**.v'
- 'vlib/v/preludes/**.v'
- 'vlib/v/gen/native/**.v'
- 'vlib/v/gen/native/tests/**.v'
- '.github/workflows/native_backend_ci.yml'
concurrency:
group: native_backend-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }}
cancel-in-progress: true
jobs:
native-backend-ubuntu:
runs-on: ubuntu-24.04
env:
VJOBS: 1
steps:
- uses: actions/checkout@v6
- name: Build V
run: make && ./v symlink
- name: Install linker
run: v retry -- sudo apt -qq install binutils
- name: Rebuild V with -g, for better stacktraces on compiler panics
run: v -g self
- name: Run the native backend tests serially with more details
run: v test vlib/v/gen/native/
native-backend-windows:
runs-on: windows-2022
env:
VJOBS: 1
steps:
- uses: actions/checkout@v6
- name: Build V (Windows)
run: ./make.bat && ./v symlink
- name: Rebuild V with -g, for better stacktraces on compiler panics
run: v -g self
- name: Run the native backend tests serially with more details
run: v test vlib/v/gen/native/