ci: fix more_extensive_but_slower_tests_ci.yml on windows

This commit is contained in:
Delyan Angelov 2024-09-12 11:25:57 +03:00
parent b2e8b2d168
commit 328c2a23a4
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -32,8 +32,15 @@ jobs:
- name: Build V
id: build
run: make && sudo ./v symlink
shell: bash
run: |
if [[ $RUNNER_OS == 'Windows' ]]; then
.\make.bat
.\v.exe symlink
else
make
sudo ./v symlink
fi
- name: Run additional crypto tests
run: |
v retry -- git clone --depth 1 https://github.com/vlang/hash_validation_tests