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

parser: fix mut args with the new syntax; checker: fmt

This commit is contained in:
Alexander Medvednikov
2020-05-11 14:16:17 +02:00
parent 2a40665919
commit ce03761375
4 changed files with 53 additions and 31 deletions

View File

@@ -29,8 +29,8 @@ jobs:
run: sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list; sudo apt-get update; sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev valgrind
- name: Build v
run: |
echo $VFLAGS
make -j4
echo $VFLAGS
make -j4
./v -cg -o v cmd/v
- name: Test v->c
run: |
@@ -115,6 +115,7 @@ jobs:
mkdir -p ~/.vmodules
ln -s $(pwd) ~/.vmodules/ui
../v examples/rectangles.v
../v examples/users.v
ubuntu:
runs-on: ubuntu-18.04