mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix v building inside native_backend_tests.yml
This commit is contained in:
parent
48b2ab157b
commit
6c060b76fd
16
.github/workflows/native_backend_tests.yml
vendored
16
.github/workflows/native_backend_tests.yml
vendored
@ -20,7 +20,17 @@ jobs:
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build V
|
||||
run: make
|
||||
|
||||
- name: Build V with make.bat
|
||||
if: ${{ startsWith(matrix.os, 'windows') }}
|
||||
run: |
|
||||
.\make.bat
|
||||
.\v.exe symlink -githubci
|
||||
- name: Build V with make
|
||||
if: ${{ !startsWith(matrix.os, 'windows') }}
|
||||
run: |
|
||||
make
|
||||
./v symlink -githubci
|
||||
|
||||
- name: Test the native backend
|
||||
run: ./v test vlib/v/gen/native/
|
||||
run: v test vlib/v/gen/native/
|
||||
|
Loading…
Reference in New Issue
Block a user