You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "$RUNNER_DEBUG" == "true" ]] || [[ "$ACTIONS_STEP_DEBUG" == "true" ]]; then printf "::debug::Now Building '%s'\n" "RustPython" ; fi ;
116
130
# Execute the testing command in a subshell
117
131
(
118
-
RUSTPYTHONPATH=${{ inputs.override-rustpython-path }} cargo run $CARGO_ARGS -- --version || printf "::error title='build failure':: Could not pass build step for version check on ${OS}.\n" ;
132
+
RUSTPYTHONPATH=${{ steps.setup_rpython_path.outputs.rust-python-path }} cargo run $CARGO_ARGS -- --version || printf "::error title='build failure':: Could not pass build step for version check on ${OS}.\n" ;
119
133
) ;
120
134
printf "::endgroup::%s\n" ;
121
135
cd ${{ steps.store_old_path.outputs.initial-path }} || exit 15 ;
122
136
- id: output_rpython_path
123
137
shell: bash
124
138
run: |
125
139
cd ${{ inputs.override-path }} || exit 13 ; # in case it is relative
126
-
cd ${{ inputs.override-rustpython-path }} || exit 13 ;
140
+
cd ${{ steps.setup_rpython_path.outputs.rust-python-path }} || exit 13 ;
0 commit comments