We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046714d commit 75fb4d3Copy full SHA for 75fb4d3
1 file changed
.github/workflows/synchronize-launchpad.yml
@@ -19,6 +19,8 @@ jobs:
19
- name: Install dependencies
20
run: |
21
python -V
22
+
23
+ echo "::group::Installing breezy"
24
venv_dir="/tmp/venv"
25
python -m venv "$venv_dir"
26
. $venv_dir/bin/activate
@@ -32,7 +34,17 @@ jobs:
32
34
# Add missing import and use binary buffer of stdin for Python3 compat
33
35
sed -i '1 i from breezy import controldir' $fastimport_dir/branch_updater.py
36
sed -i 's/helpers.binary_stream(sys.stdin)/sys.stdin.buffer/' $fastimport_dir/cmds.py
37
+ echo "::endgroup::"
38
39
+ # Sanity check
40
+ echo "::group::Breezy location"
41
+ which brz
42
43
+ echo "::group::brz script contents"
44
+ cat $(which brz)
45
46
+ echo "brz help text"
47
+ brz help
48
49
- uses: actions/checkout@v4
50
with:
0 commit comments