1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: add v-analyzer builds (#18835)

This commit is contained in:
JalonSolov 2023-07-11 07:50:15 -04:00 committed by GitHub
parent 6b792b1257
commit 72cd9b80a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,18 +85,17 @@ jobs:
# v run /tmp/gitly/tests/first_run.v
# # /tmp/gitly/gitly -ci_run
# - name: Build V Language Server (VLS) vlang/vls
# run: |
# echo "Clone VLS"
# git clone --depth 1 https://github.com/vlang/vls /tmp/vls
# echo "Build VLS"
# v /tmp/vls/cmd/vls
# echo "Build VLS with -prod"
# v -prod /tmp/vls/cmd/vls
# echo "Build VLS with -gc boehm -skip-unused"
# v -gc boehm -skip-unused /tmp/vls/cmd/vls
# echo "Test VLS with gcc"
# v -cc gcc test /tmp/vls
- name: Build V Language Server (v-analyzer) v-analyzer/v-analyzer
run: |
echo "Clone v-analyzer"
git clone --depth 1 https://github.com/v-analyzer/v-analyzer /tmp/v-analyzer
cd /tmp/v-analyzer
echo "Installing dependencies"
v install
echo "Build v-analyzer debug"
v build.vsh debug
echo "Build v-analyzer release"
v build.vsh release
- name: Build vlang/go2v
run: |