Skip to content

Commit d444f9c

Browse files
committed
all: rename make.bat; better dynamic array init syntax
1 parent b5b93b0 commit d444f9c

30 files changed

Lines changed: 51 additions & 47 deletions

.github/workflows/cross_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
run: |
113113
echo %VFLAGS%
114114
echo $VFLAGS
115-
.\make.bat -msvc
115+
.\makev.bat -msvc
116116
- name: TODO v_win.c can be compiled and run with -os windows
117117
run: |
118118
.\v.exe -os windows -cc msvc -showcc -o v2.exe cmd\v

.github/workflows/debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: |
1515
echo %VFLAGS%
1616
echo $VFLAGS
17-
.\make.bat -msvc
17+
.\makev.bat -msvc
1818
.\v.exe -cflags /WX self
1919
- name: Install dependencies
2020
run: |

.github/workflows/more_extensive_but_slower_tests_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: make -j4 && ./v symlink
3636
- name: Build V (Windows)
3737
if: runner.os == 'Windows'
38-
run: ./make.bat && ./v symlink
38+
run: ./makev.bat && ./v symlink
3939

4040
- name: Run additional crypto tests
4141
run: |

.github/workflows/paths_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
dir
105105
cd 'path with some $punctuation, and some spaces'
106106
dir
107-
.\make.bat -tcc
107+
.\makev.bat -tcc
108108
- name: v doctor
109109
run: |
110110
cd 'path with some $punctuation, and some spaces'

.github/workflows/periodic_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
run: make -j4 && ./v -showcc -o v cmd/v && ./v doctor
3636
- name: Build V (Windows)
3737
if: runner.os == 'Windows'
38-
run: ./make.bat -msvc && ./v -o v2.exe cmd/v && ./v2 -showcc -o v.exe cmd/v && ./v doctor
38+
run: ./makev.bat -msvc && ./v -o v2.exe cmd/v && ./v2 -showcc -o v.exe cmd/v && ./v doctor
3939
- name: Test
4040
run: ./v -d network -silent test-self vlib/net

.github/workflows/release_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Compile release binaries (Windows)
6767
if: runner.os == 'Windows'
6868
run: |
69-
./make.bat -msvc
69+
./makev.bat -msvc
7070
./v -prod -cc msvc -o cmd/vprod.exe cmd/v
7171
./v -prod -cc msvc cmd/tools/vup.v
7272
./v -prod -cc msvc cmd/tools/vdoctor.v

.github/workflows/sanitized_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
run: |
201201
echo %VFLAGS%
202202
echo $VFLAGS
203-
.\make.bat -msvc
203+
.\makev.bat -msvc
204204
.\v.exe self
205205
- name: V doctor
206206
run: .\v.exe doctor

.github/workflows/symlink_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
steps:
6767
- uses: actions/checkout@v6
6868
- name: Build V
69-
run: ./make.bat
69+
run: ./makev.bat
7070
- name: Symlink
7171
run: ./v symlink ${{ matrix.flags }}
7272
- name: Check if V is usable

.github/workflows/time_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v6
6060
- name: Build V
61-
run: .\make.bat
61+
run: .\makev.bat
6262
- name: Test time functions in a timezone UTC-12
6363
run: tzutil /s "Dateline Standard Time" && ./v test vlib/time/
6464
- name: Test time functions in a timezone UTC-3

.github/workflows/tools_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
steps:
9696
- uses: actions/checkout@v6
9797
- name: Build V
98-
run: ./make.bat -${{ matrix.cc }} && ./v -o v2.exe cmd/v && ./v2 -showcc -o v.exe cmd/v && ./v symlink && ./v doctor
98+
run: ./makev.bat -${{ matrix.cc }} && ./v -o v2.exe cmd/v && ./v2 -showcc -o v.exe cmd/v && ./v symlink && ./v doctor
9999
- name: Install SQLite (needed by vsqlite tool)
100100
run: .\.github\workflows\windows-install-sqlite.bat
101101
- name: Check build tools

0 commit comments

Comments
 (0)