-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(doc): add mako installation into doc building workflow (#95)
* Update doc.yml * Move mako install step back to dependency installation
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,6 +138,7 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
scoop install git python llvm cmake curl | ||
python -m pip install mako | ||
- name: Run sccache-cache | ||
uses: Mozilla-Actions/[email protected] | ||
|
@@ -147,7 +148,6 @@ jobs: | |
|
||
- name: Build | ||
run: | | ||
python -m pip install mako | ||
cargo build --release | ||
# - name: Test | ||
|
@@ -195,13 +195,13 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
brew install cmake pkg-config | ||
python -m pip install mako | ||
- name: Run sccache-cache | ||
uses: Mozilla-Actions/[email protected] | ||
|
||
- name: Build | ||
run: | | ||
python -m pip install mako | ||
cargo build --release | ||
# - name: Test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,8 @@ jobs: | |
libgstrtspserver-1.0-dev gstreamer1.0-tools libges-1.0-dev \ | ||
libharfbuzz-dev liblzma-dev libunwind-dev libunwind-dev libvulkan1 \ | ||
libx11-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev \ | ||
libxmu-dev libxmu6 libegl1-mesa-dev llvm-dev m4 xorg-dev sway | ||
libxmu-dev libxmu6 libegl1-mesa-dev llvm-dev m4 xorg-dev sway \ | ||
python3-mako | ||
- name: Run sccache-cache | ||
uses: Mozilla-Actions/[email protected] | ||
|