mirror of
https://github.com/vlang/v.git
synced 2025-09-24 04:48:28 -04:00
ci: fix dependencies for modules with examples (libasound2-dev is needed for sokol.audio on Ubuntu) (#25102)
This commit is contained in:
parent
cdbedc43cb
commit
71d32ea6ad
8
.github/workflows/module_docs_ci.yml
vendored
8
.github/workflows/module_docs_ci.yml
vendored
@ -35,6 +35,14 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- name: Build V
|
- name: Build V
|
||||||
run: make -j4 && ./v symlink
|
run: make -j4 && ./v symlink
|
||||||
|
- name: Update packages, before running apt install
|
||||||
|
run: v retry -- sudo apt update -y -qq
|
||||||
|
- name: Install dependencies (some modules wrap C libs)
|
||||||
|
run: v retry -- sudo apt install --quiet -y libpq-dev
|
||||||
|
libsodium-dev libasound2-dev libssl-dev \
|
||||||
|
sqlite3 libsqlite3-dev libfreetype6-dev \
|
||||||
|
libx11-dev libxi-dev freeglut3-dev \
|
||||||
|
libgl1-mesa-dri libxcursor-dev libgl-dev libxrandr-dev
|
||||||
- name: Install markdown from vpm
|
- name: Install markdown from vpm
|
||||||
run: v retry -- v install markdown
|
run: v retry -- v install markdown
|
||||||
- name: Test v doc
|
- name: Test v doc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user