Skip to content

Commit

Permalink
move install_dependencies.sh, update workflow to match the path
Browse files Browse the repository at this point in the history
  • Loading branch information
Erol444 committed Aug 26, 2024
1 parent 3a92057 commit bbe5d3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-install-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
workflow_dispatch:
push:
paths:
- 'docs/source/_static/install_dependencies.sh'
- 'docs/install_dependencies.sh'
- 'examples/install_requirements.py'
pull_request:
paths:
- 'docs/source/_static/install_dependencies.sh'
- 'docs/install_dependencies.sh'
- 'examples/install_requirements.py'

jobs:
Expand All @@ -30,7 +30,7 @@
- name: Install dependencies
run: |
ln -snf /usr/share/zoneinfo/UTC /etc/localtime && echo UTC > /etc/timezone # Otherwise tzdata installer prompts for user input
sed '/udevadm control --reload-rules && sudo udevadm trigger/d' docs/source/_static/install_dependencies.sh > tmp_script.sh # Doesn't work on docker
sed '/udevadm control --reload-rules && sudo udevadm trigger/d' docs/install_dependencies.sh > tmp_script.sh # Doesn't work on docker
bash tmp_script.sh
- name: Create a virtual environment
if: endsWith(matrix.container_image, 'rolling') == true
Expand All @@ -54,7 +54,7 @@
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sed '/udevadm control --reload-rules && sudo udevadm trigger/d' docs/source/_static/install_dependencies.sh > tmp_script.sh
sed '/udevadm control --reload-rules && sudo udevadm trigger/d' docs/install_dependencies.sh > tmp_script.sh
bash tmp_script.sh
- name: Create a virtual environment
run: |
Expand Down
File renamed without changes.

0 comments on commit bbe5d3e

Please sign in to comment.