Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgkwill authored Feb 28, 2024
1 parent 31d477a commit ea67484
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ runs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
source /home/$(whoami)/.local/pipx/venvs/poetry/bin/activate
if [ "$(whoami)" = "ci-lava" ]; then
source /home/$(whoami)/.local/pipx/venvs/poetry/bin/activate
fi
poetry install --no-interaction --no-root
shell: bash

- name: Install Lava
run: |
source /home/$(whoami)/.local/pipx/venvs/poetry/bin/activate
if [ "$(whoami)" = "ci-lava" ]; then
source /home/$(whoami)/.local/pipx/venvs/poetry/bin/activate
fi
export CMAKE_ARGS="..."
poetry install --no-interaction
shell: bash

0 comments on commit ea67484

Please sign in to comment.