Skip to content

Commit

Permalink
workspace
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed May 8, 2024
1 parent 74509ca commit 6cfffef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,19 @@ jobs:
shell: bash
- name: Install sphinx requirements
run: |
python3 -m venv _venv
source _venv/bin/activate
python3 -m venv ${GITHUB_WORKSPACE}/_venv
source ${GITHUB_WORKSPACE}/_venv/bin/activate
pip3 install -r website/requirements.txt
shell: bash
- name: Configure
run: |
source ../_venv/bin/activate
source ${GITHUB_WORKSPACE}/_venv/bin/activate
cmake .. -DBUILD_WEBSITE=ON -DCMAKE_VERBOSE_MAKEFILE=ON
working-directory: _build
shell: bash
- name: Build
run: |
source ../_venv/bin/activate
source ${GITHUB_WORKSPACE}/_venv/bin/activate
cmake --build . --target website --config Release
working-directory: _build
shell: bash
Expand Down

0 comments on commit 6cfffef

Please sign in to comment.