ci: fix `v -W build-examples`
parent
e066e83041
commit
89bf48e3ba
|
@ -117,9 +117,9 @@ jobs:
|
||||||
- name: Test time functions in a timezone using daylight saving (Europe/Paris)
|
- name: Test time functions in a timezone using daylight saving (Europe/Paris)
|
||||||
run: TZ=Europe/Paris ./v test vlib/time/
|
run: TZ=Europe/Paris ./v test vlib/time/
|
||||||
- name: Build examples
|
- name: Build examples
|
||||||
run: ./v build-examples
|
run: ./v -W build-examples
|
||||||
- name: Test building v tools
|
- name: Test building v tools
|
||||||
run: ./v build-tools
|
run: ./v -W build-tools
|
||||||
- name: Test v binaries
|
- name: Test v binaries
|
||||||
run: ./v build-vbinaries
|
run: ./v build-vbinaries
|
||||||
- name: Test v tutorials
|
- name: Test v tutorials
|
||||||
|
|
|
@ -70,11 +70,11 @@ fn get_all_commands() []Command {
|
||||||
okmsg: 'There are no _test.v file regressions.'
|
okmsg: 'There are no _test.v file regressions.'
|
||||||
}
|
}
|
||||||
res << Command{
|
res << Command{
|
||||||
line: '$vexe $vargs -progress build-tools'
|
line: '$vexe $vargs -progress -W build-tools'
|
||||||
okmsg: 'All tools can be compiled.'
|
okmsg: 'All tools can be compiled.'
|
||||||
}
|
}
|
||||||
res << Command{
|
res << Command{
|
||||||
line: '$vexe $vargs -progress build-examples'
|
line: '$vexe $vargs -progress -W build-examples'
|
||||||
okmsg: 'All examples can be compiled.'
|
okmsg: 'All examples can be compiled.'
|
||||||
}
|
}
|
||||||
res << Command{
|
res << Command{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
module main
|
module main
|
||||||
|
|
||||||
import vweb
|
import vweb
|
||||||
import vweb.assets
|
//import vweb.assets
|
||||||
import time
|
import time
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in New Issue