-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hotfix (install lld for doc build) (#714)
- Loading branch information
1 parent
7fa04a7
commit 63afe70
Showing
3 changed files
with
8 additions
and
6 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
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 |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -28,7 +30,7 @@ jobs: | |
submodules: "true" | ||
|
||
- name: Install packages | ||
run: sudo apt-get install -y libboost-all-dev graphviz | ||
run: sudo apt-get install -y libboost-all-dev graphviz lld | ||
|
||
- name: Install Python packages | ||
run: sudo pip install psutil rich numpy pybind11 | ||
|
@@ -46,7 +48,7 @@ jobs: | |
# https://github.com/hendrikmuhs/ccache-action/releases/tag/v1.2.9 | ||
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e | ||
with: | ||
key: ${{ runner.os }}-clangreleaseasserts-${{ steps.get-submodule-hash.outputs.hash }} | ||
key: ${{ runner.os }}-releaseasserts-${{ steps.get-submodule-hash.outputs.hash }} | ||
max-size: 1G | ||
|
||
- name: Get cmakeModules | ||
|
@@ -90,6 +92,7 @@ jobs: | |
echo "}" > ../build_release/docs/build_info.json | ||
- name: Publish to GitHub-Pages | ||
if: github.event_name != 'pull_request' | ||
# https://github.com/peaceiris/actions-gh-pages/releases/tag/v3.9.3 | ||
uses: peaceiris/[email protected] | ||
with: | ||
|
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