Skip to content

Commit

Permalink
Add missing shell: bash
Browse files Browse the repository at this point in the history
  • Loading branch information
pzhu-flexiv committed Nov 26, 2024
1 parent 98c7d41 commit 25a8688
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/shared_steps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ runs:
steps:
# Build and install all dependencies to RDK installation directory.
- name: Build and install dependencies
shell: bash
run: |
cd ${{github.workspace}}
cd thirdparty
bash build_and_install_dependencies.sh ~/rdk_install 4
# Configure CMake, then build and install flexiv_rdk library to RDK installation directory.
- name: Build and install library
shell: bash
run: |
cd ${{github.workspace}}
mkdir -p build && cd build
Expand All @@ -19,6 +21,7 @@ runs:
# Find and link to flexiv_rdk library, then build all example programs.
- name: Build examples
shell: bash
run: |
cd ${{github.workspace}}/example
mkdir -p build && cd build
Expand All @@ -27,6 +30,7 @@ runs:
# Find and link to flexiv_rdk library, then build all test programs.
- name: Build tests
shell: bash
run: |
cd ${{github.workspace}}/test
mkdir -p build && cd build
Expand Down

0 comments on commit 25a8688

Please sign in to comment.