Skip to content

Commit 7ba109a

Browse files
committed
default to bash in global level
1 parent 3692f5d commit 7ba109a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/opencv.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ env:
3535
3636
jobs:
3737
build:
38+
defaults:
39+
run:
40+
shell: bash
41+
3842
runs-on: ${{
3943
(matrix.os == 'ubuntu.22.04') && 'ubuntu-22.04' ||
4044
(matrix.os == 'ubuntu.24.04') && 'ubuntu-24.04' ||
@@ -78,7 +82,6 @@ jobs:
7882
cmake ${{ env.OPENCV_CMAKE_ARGS }} ..
7983
8084
- name: Build OpenCV
81-
shell: bash
8285
run: |
8386
cd opencv/build
8487
if [[ "${{ matrix.os }}" == "win" ]]; then
@@ -88,7 +91,6 @@ jobs:
8891
fi
8992
9093
- name: Install OpenCV
91-
shell: bash
9294
run: |
9395
cd opencv/build
9496
if [[ "${{ matrix.os }}" == "win" ]]; then
@@ -98,12 +100,10 @@ jobs:
98100
fi
99101
100102
- name: Show Build Artifacts
101-
shell: bash
102103
run: |
103104
cd opencv/build && ls -lR
104105
105106
- name: Make artifacts
106-
shell: bash
107107
run: |
108108
mkdir artifacts
109109
cp -r opencv/build/install/* artifacts

0 commit comments

Comments
 (0)