From 25a868853cd1c10236527f27ab4bc210b3f8996b Mon Sep 17 00:00:00 2001 From: Peizhang Zhu Date: Mon, 25 Nov 2024 16:52:25 -0800 Subject: [PATCH] Add missing shell: bash --- .github/workflows/shared_steps/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/shared_steps/action.yml b/.github/workflows/shared_steps/action.yml index ddbc86c..6b903b9 100644 --- a/.github/workflows/shared_steps/action.yml +++ b/.github/workflows/shared_steps/action.yml @@ -4,6 +4,7 @@ runs: steps: # Build and install all dependencies to RDK installation directory. - name: Build and install dependencies + shell: bash run: | cd ${{github.workspace}} cd thirdparty @@ -11,6 +12,7 @@ runs: # 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 @@ -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 @@ -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