mirror of
https://github.com/vlang/v.git
synced 2025-09-12 08:57:09 -04:00
ci: fix more_extensive_but_slower_tests_ci.yml on windows
This commit is contained in:
parent
b2e8b2d168
commit
328c2a23a4
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user