Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Specify shell type to bash
Browse files Browse the repository at this point in the history
  • Loading branch information
baluchicken committed Mar 4, 2024
1 parent 9f34216 commit a512058
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/actions/smoketest/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ runs:
steps:
- name: Run smoke tests
working-directory: camblet-driver
shell: bash
run: |
touch /tmp/camblet.log /tmp/file-server.log /tmp/python.log
echo "Run processes"
Expand Down Expand Up @@ -47,20 +48,24 @@ runs:
- name: Kernel log
if: always()
shell: bash
run: |
sudo dmesg -T
- name: Camblet agent log
if: always()
shell: bash
run: |
cat /tmp/camblet.log
- name: File server log
if: always()
shell: bash
run: |
cat /tmp/file-server.log
- name: Python log
if: always()
shell: bash
run: |
cat /tmp/python.log

0 comments on commit a512058

Please sign in to comment.