File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 1919 - name : Install dependencies
2020 run : |
2121 python -V
22+
23+ echo "::group::Installing breezy"
2224 venv_dir="/tmp/venv"
2325 python -m venv "$venv_dir"
2426 . $venv_dir/bin/activate
3234 # Add missing import and use binary buffer of stdin for Python3 compat
3335 sed -i '1 i from breezy import controldir' $fastimport_dir/branch_updater.py
3436 sed -i 's/helpers.binary_stream(sys.stdin)/sys.stdin.buffer/' $fastimport_dir/cmds.py
37+ echo "::endgroup::"
3538
39+ # Sanity check
40+ echo "::group::Breezy location"
41+ which brz
42+ echo "::endgroup::"
43+ echo "::group::brz script contents"
44+ cat $(which brz)
45+ echo "::endgroup::"
46+ echo "brz help text"
47+ brz help
3648
3749 - uses : actions/checkout@v4
3850 with :
You can’t perform that action at this time.
0 commit comments