Skip to content

Commit 24a54af

Browse files
committed
Add missed shell: bash
1 parent d9f536c commit 24a54af

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/actions/run-in-docker-action/action.yml

+17
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ runs:
1818
echo "$var" >> "$GITHUB_ENV"
1919
done
2020
echo "MAKEFLAGS=-j$(($(nproc) + 1))" >> "$GITHUB_ENV"
21+
shell: bash
2122

2223
- name: Set up Docker Buildx
2324
uses: docker/setup-buildx-action@v2
@@ -42,6 +43,7 @@ runs:
4243
git config --global --add safe.directory ${{ github.workspace }} && \
4344
./ci/cirrus.sh \
4445
"
46+
shell: bash
4547

4648
- name: tests.log
4749
run: >
@@ -52,7 +54,9 @@ runs:
5254
${{ inputs.tag }} bash -c " \
5355
cat tests.log || true \
5456
"
57+
shell: bash
5558
if: ${{ always() }}
59+
5660
- name: noverify_tests.log
5761
run: >
5862
docker run \
@@ -62,7 +66,9 @@ runs:
6266
${{ inputs.tag }} bash -c " \
6367
cat noverify_tests.log || true \
6468
"
69+
shell: bash
6570
if: ${{ always() }}
71+
6672
- name: exhaustive_tests.log
6773
run: >
6874
docker run \
@@ -72,7 +78,9 @@ runs:
7278
${{ inputs.tag }} bash -c " \
7379
cat exhaustive_tests.log || true \
7480
"
81+
shell: bash
7582
if: ${{ always() }}
83+
7684
- name: ctime_tests.log
7785
run: >
7886
docker run \
@@ -83,6 +91,8 @@ runs:
8391
cat ctime_tests.log || true \
8492
"
8593
if: ${{ always() }}
94+
shell: bash
95+
8696
- name: bench.log
8797
run: >
8898
docker run \
@@ -92,7 +102,9 @@ runs:
92102
${{ inputs.tag }} bash -c " \
93103
cat bench.log || true \
94104
"
105+
shell: bash
95106
if: ${{ always() }}
107+
96108
- name: config.log
97109
run: >
98110
docker run \
@@ -102,7 +114,9 @@ runs:
102114
${{ inputs.tag }} bash -c " \
103115
cat config.log || true \
104116
"
117+
shell: bash
105118
if: ${{ always() }}
119+
106120
- name: test_env.log
107121
run: >
108122
docker run \
@@ -112,7 +126,9 @@ runs:
112126
${{ inputs.tag }} bash -c " \
113127
cat test_env.log || true \
114128
"
129+
shell: bash
115130
if: ${{ always() }}
131+
116132
- name: env
117133
run: >
118134
docker run \
@@ -122,4 +138,5 @@ runs:
122138
${{ inputs.tag }} bash -c " \
123139
env \
124140
"
141+
shell: bash
125142
if: ${{ always() }}

0 commit comments

Comments
 (0)