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

ci: change periodic.yml to also install valgrind too

This commit is contained in:
Delyan Angelov 2020-06-09 19:02:57 +03:00
parent 4fc41c4bc4
commit b3e0827f58

View File

@ -10,9 +10,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install dependencies - name: Install dependencies
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev valgrind
- name: Build v - name: Build v
run: make -j4 && ./v -cg -o v cmd/v run: make -j4
- name: Symlink V - name: Symlink V
run: sudo ./v symlink run: sudo ./v symlink
- name: Run network tests - name: Run network tests