Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
almirsarajcic committed Sep 17, 2024
1 parent acbc74e commit 1dce9ad
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/github_workflows.ex
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ defmodule GithubWorkflows do
[
name: "Test the script",
if: "steps.result_cache.outputs.cache-hit != 'true'",
run: "/bin/#{shell} -c '(cd test/scripts) && expect script.exp #{os}.sh'",
run: "/bin/#{shell} -c 'cd test/scripts && expect script.exp #{os}.sh'",
shell: "/bin/#{shell} -l {0}"
],
[
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/bash -c '(cd test/scripts) && expect script.exp Linux.sh'
run: /bin/bash -c 'cd test/scripts && expect script.exp Linux.sh'
shell: /bin/bash -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
run: brew install expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/bash -c '(cd test/scripts) && expect script.exp macOS.sh'
run: /bin/bash -c 'cd test/scripts && expect script.exp macOS.sh'
shell: /bin/bash -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/fish -c '(cd test/scripts) && expect script.exp Linux.sh'
run: /bin/fish -c 'cd test/scripts && expect script.exp Linux.sh'
shell: /bin/fish -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
run: brew install expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/fish -c '(cd test/scripts) && expect script.exp macOS.sh'
run: /bin/fish -c 'cd test/scripts && expect script.exp macOS.sh'
shell: /bin/fish -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/zsh -c '(cd test/scripts) && expect script.exp Linux.sh'
run: /bin/zsh -c 'cd test/scripts && expect script.exp Linux.sh'
shell: /bin/zsh -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
run: brew install expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/zsh -c '(cd test/scripts) && expect script.exp macOS.sh'
run: /bin/zsh -c 'cd test/scripts && expect script.exp macOS.sh'
shell: /bin/zsh -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/bash -c '(cd test/scripts) && expect script.exp Linux.sh'
run: /bin/bash -c 'cd test/scripts && expect script.exp Linux.sh'
shell: /bin/bash -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
run: brew install expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/bash -c '(cd test/scripts) && expect script.exp macOS.sh'
run: /bin/bash -c 'cd test/scripts && expect script.exp macOS.sh'
shell: /bin/bash -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/fish -c '(cd test/scripts) && expect script.exp Linux.sh'
run: /bin/fish -c 'cd test/scripts && expect script.exp Linux.sh'
shell: /bin/fish -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
run: brew install expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/fish -c '(cd test/scripts) && expect script.exp macOS.sh'
run: /bin/fish -c 'cd test/scripts && expect script.exp macOS.sh'
shell: /bin/fish -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/zsh -c '(cd test/scripts) && expect script.exp Linux.sh'
run: /bin/zsh -c 'cd test/scripts && expect script.exp Linux.sh'
shell: /bin/zsh -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
run: brew install expect
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: /bin/zsh -c '(cd test/scripts) && expect script.exp macOS.sh'
run: /bin/zsh -c 'cd test/scripts && expect script.exp macOS.sh'
shell: /bin/zsh -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 1dce9ad

Please sign in to comment.