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

44 lines
1.1 KiB
YAML
Raw Normal View History

2021-04-17 16:12:11 +03:00
name: Debug CI
2021-04-17 16:08:18 +03:00
2021-04-17 16:19:17 +03:00
on: [workflow_dispatch]
2021-04-17 16:08:18 +03:00
jobs:
2021-04-17 16:08:18 +03:00
debug-msvc:
runs-on: windows-2019
timeout-minutes: 121
2021-04-17 16:08:18 +03:00
env:
VFLAGS: -cc msvc
steps:
- uses: actions/checkout@v3
2021-04-17 16:08:18 +03:00
- name: Build
run: |
echo %VFLAGS%
echo $VFLAGS
.\make.bat -msvc
2021-04-17 16:08:18 +03:00
.\v.exe -cflags /WX self
- name: Install dependencies
run: |
.\v.exe setup-freetype
.\.github\workflows\windows-install-sqlite.bat
- name: v doctor
run: ./v doctor
2021-04-17 16:08:18 +03:00
- name: Verify `v test` works
run: |
./v cmd/tools/test_if_v_test_system_works.v
./cmd/tools/test_if_v_test_system_works
- name: All code is formatted
run: ./v test-cleancode
2021-04-17 16:08:18 +03:00
- name: Self tests
run: |
./v -cg cmd\tools\vtest-self.v
./v test-self
2021-04-17 16:08:18 +03:00
- name: Test v->js
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
- name: Test v binaries
run: ./v build-vbinaries
- name: Build examples
run: ./v build-examples
- name: v2 self compilation
run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v