forked from BlueQuartzSoftware/simplnx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUG: Fix missing python dependencies for ASAN build
Signed-off-by: Michael Jackson <[email protected]>
- Loading branch information
1 parent
62df764
commit 8afb4ab
Showing
1 changed file
with
13 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -14,11 +14,23 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install sphinx myst-parser sphinx-markdown-tables sphinx_rtd_theme numpy | ||
- name: Add C++ Problem Matcher | ||
uses: ammaraskar/[email protected] | ||
- name: Install Dependencies | ||
- name: Install Dependencies - 2 | ||
run: | | ||
sudo apt-get -y install ninja-build | ||
- name: Install Sphinx | ||
run: | | ||
sudo pip3 install sphinx myst-parser sphinx-markdown-tables sphinx_rtd_theme numpy | ||
- name: Setup NuGet Credentials | ||
shell: bash | ||
run: | | ||
|