remove asm test from msvc
parent
6ae8457f35
commit
43863edc4f
|
@ -39,8 +39,8 @@ jobs:
|
||||||
run: make && ./v -cc gcc -o v v.v
|
run: make && ./v -cc gcc -o v v.v
|
||||||
- name: Test v->c
|
- name: Test v->c
|
||||||
run: ./v test v
|
run: ./v test v
|
||||||
- name: Test v->js
|
# - name: Test v->js
|
||||||
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
||||||
- name: Bare metal
|
- name: Bare metal
|
||||||
run: ./v -bare -o bare vlib/os/bare/bare_example_linux.v
|
run: ./v -bare -o bare vlib/os/bare/bare_example_linux.v
|
||||||
|
|
||||||
|
|
|
@ -91,6 +91,7 @@ pub fn (ts mut TestSession) test() {
|
||||||
if file.contains('sqlite') { continue }
|
if file.contains('sqlite') { continue }
|
||||||
}
|
}
|
||||||
$if msvc {
|
$if msvc {
|
||||||
|
if file.contains('asm') { continue }
|
||||||
}
|
}
|
||||||
$if tinyc {
|
$if tinyc {
|
||||||
if file.contains('asm') { continue }
|
if file.contains('asm') { continue }
|
||||||
|
|
Loading…
Reference in New Issue