mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: add a vls-compiles
job too
This commit is contained in:
parent
84fc9cec4b
commit
9728abf4bc
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -837,3 +837,17 @@ jobs:
|
||||
./v version
|
||||
./v -o v2 cmd/v
|
||||
./v2 -o v3 cmd/v
|
||||
|
||||
vls-compiles:
|
||||
runs-on: ubuntu-18.04
|
||||
timeout-minutes: 30
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build V
|
||||
run: make -j2 && ./v -cc gcc -o v cmd/v
|
||||
- name: Clone VLS
|
||||
run: git clone --depth 1 https://github.com/vlang/vls
|
||||
- name: Build VLS
|
||||
run: cd vls; ../v cmd/vls ; cd ..
|
||||
- name: Build VLS with -prod
|
||||
run: cd vls; ../v -prod cmd/vls ; cd ..
|
||||
|
Loading…
Reference in New Issue
Block a user