Skip to content

Commit

Permalink
Add missed shell: bash
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Aug 10, 2023
1 parent d9f536c commit 24a54af
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/actions/run-in-docker-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ runs:
echo "$var" >> "$GITHUB_ENV"
done
echo "MAKEFLAGS=-j$(($(nproc) + 1))" >> "$GITHUB_ENV"
shell: bash

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

- name: tests.log
run: >
Expand All @@ -52,7 +54,9 @@ runs:
${{ inputs.tag }} bash -c " \
cat tests.log || true \
"
shell: bash
if: ${{ always() }}

- name: noverify_tests.log
run: >
docker run \
Expand All @@ -62,7 +66,9 @@ runs:
${{ inputs.tag }} bash -c " \
cat noverify_tests.log || true \
"
shell: bash
if: ${{ always() }}

- name: exhaustive_tests.log
run: >
docker run \
Expand All @@ -72,7 +78,9 @@ runs:
${{ inputs.tag }} bash -c " \
cat exhaustive_tests.log || true \
"
shell: bash
if: ${{ always() }}

- name: ctime_tests.log
run: >
docker run \
Expand All @@ -83,6 +91,8 @@ runs:
cat ctime_tests.log || true \
"
if: ${{ always() }}
shell: bash

- name: bench.log
run: >
docker run \
Expand All @@ -92,7 +102,9 @@ runs:
${{ inputs.tag }} bash -c " \
cat bench.log || true \
"
shell: bash
if: ${{ always() }}

- name: config.log
run: >
docker run \
Expand All @@ -102,7 +114,9 @@ runs:
${{ inputs.tag }} bash -c " \
cat config.log || true \
"
shell: bash
if: ${{ always() }}

- name: test_env.log
run: >
docker run \
Expand All @@ -112,7 +126,9 @@ runs:
${{ inputs.tag }} bash -c " \
cat test_env.log || true \
"
shell: bash
if: ${{ always() }}

- name: env
run: >
docker run \
Expand All @@ -122,4 +138,5 @@ runs:
${{ inputs.tag }} bash -c " \
env \
"
shell: bash
if: ${{ always() }}

0 comments on commit 24a54af

Please sign in to comment.