Skip to content

Commit 28d1bea

Browse files
committed
Fix env block sytanx.
1 parent ad5fe12 commit 28d1bea

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/cpp_b2.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,20 @@ jobs:
103103
if: runner.os != 'Windows'
104104
env:
105105
B2_ARGS: >-
106-
${{ matrix.b2-toolset && format('toolset={0}',matrix.b2-toolset) || '' }} \
107-
${{ matrix.build_dir && format('--build-dir={0}',matrix.build_dir) || '' }} \
108-
${{ matrix.address_model && format('address-model={0}',matrix.address_model) || '' }} \
109-
${{ matrix.cxxstd && format('cxxstd={0}',matrix.cxxstd) || '' }} \
110-
${{ matrix.build_type && format('variant={0}',matrix.build_type) || '' }} \
111-
${{ matrix.extra_args || '' }} \
112-
${{ matrix.cxxflags && format('cxxflags={0}',matrix.cxxflags) || '' }} \
113-
${{ matrix.ccflags && format('cflags={0}',matrix.ccflags) || '' }} \
114-
${{ matrix.linkflags && format('linkflags={0}',matrix.linkflags) || '' }} \
115-
${{ matrix.threading && format('threading={0}',matrix.threading) || '' }} \
116-
${{ matrix.asan == true && 'address-sanitizer=on' || '' }} \
117-
${{ matrix.ubsan == true && 'undefined-sanitizer=on' || '' }} \
118-
${{ matrix.tsan == true && 'thread-sanitizer=on' || '' }} \
119-
${{ matrix.shared == true && 'link=shared' || 'link=static' }} \
106+
${{ matrix.b2-toolset && format('toolset={0}',matrix.b2-toolset) || '' }}
107+
${{ matrix.build_dir && format('--build-dir={0}',matrix.build_dir) || '' }}
108+
${{ matrix.address_model && format('address-model={0}',matrix.address_model) || '' }}
109+
${{ matrix.cxxstd && format('cxxstd={0}',matrix.cxxstd) || '' }}
110+
${{ matrix.build_type && format('variant={0}',matrix.build_type) || '' }}
111+
${{ matrix.extra_args || '' }}
112+
${{ matrix.cxxflags && format('cxxflags={0}',matrix.cxxflags) || '' }}
113+
${{ matrix.ccflags && format('cflags={0}',matrix.ccflags) || '' }}
114+
${{ matrix.linkflags && format('linkflags={0}',matrix.linkflags) || '' }}
115+
${{ matrix.threading && format('threading={0}',matrix.threading) || '' }}
116+
${{ matrix.asan == true && 'address-sanitizer=on' || '' }}
117+
${{ matrix.ubsan == true && 'undefined-sanitizer=on' || '' }}
118+
${{ matrix.tsan == true && 'thread-sanitizer=on' || '' }}
119+
${{ matrix.shared == true && 'link=shared' || 'link=static' }}
120120
${{ matrix.runtime_link == true && 'runtime-link=shared' || 'link=static' }}
121121
shell: bash
122122
run: |

0 commit comments

Comments
 (0)