File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,16 @@ permissions:
20
20
id-token : write
21
21
contents : read
22
22
23
+ # The reason for default shell bash is because on our self-hosted windows runners,
24
+ # the default shell is powershell, which doesn't work correctly together with `just` commands.
25
+ # Even if a command inside a just-recipe fails, github reports the step as successful.
26
+ # The problem may or may not be related to our custom windows runner not applying the
27
+ # powershell steps outlined here
28
+ # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
29
+ defaults :
30
+ run :
31
+ shell : bash
32
+
23
33
jobs :
24
34
build :
25
35
if : ${{ inputs.docs_only == 'false' }}
71
81
72
82
- name : Verify MSRV
73
83
run : ./dev/verify-msrv.sh hyperlight-host hyperlight-guest hyperlight-common
74
- shell : bash
75
84
76
85
- name : Run Rust tests
77
86
env :
You can’t perform that action at this time.
0 commit comments