@@ -223,8 +223,8 @@ jobs:
223
223
224
224
- name : Install dependencies
225
225
run : |
226
- docker exec -it builder apt-get update
227
- docker exec -it builder apt-get -y --no-install-recommends install \
226
+ docker exec builder apt-get update
227
+ docker exec builder apt-get -y --no-install-recommends install \
228
228
git \
229
229
libssl-dev \
230
230
make \
@@ -235,49 +235,49 @@ jobs:
235
235
${{ matrix.install }}
236
236
237
237
- name : Setup Boost
238
- run : docker exec -it builder /boost-redis/tools/ci.py setup-boost --source-dir=/boost-redis
238
+ run : docker exec builder /boost-redis/tools/ci.py setup-boost --source-dir=/boost-redis
239
239
240
240
- name : Build a Boost distribution using B2
241
241
run : |
242
- docker exec -it builder /boost-redis/tools/ci.py build-b2-distro \
242
+ docker exec builder /boost-redis/tools/ci.py build-b2-distro \
243
243
--toolset ${{ matrix.toolset }}
244
244
245
245
- name : Build a Boost distribution using CMake
246
246
run : |
247
- docker exec -it builder /boost-redis/tools/ci.py build-cmake-distro \
247
+ docker exec builder /boost-redis/tools/ci.py build-cmake-distro \
248
248
--build-type ${{ matrix.build-type }} \
249
249
--cxxstd ${{ matrix.cxxstd }} \
250
250
--toolset ${{ matrix.toolset }}
251
251
252
252
- name : Build the project tests
253
253
run : |
254
- docker exec -it builder /boost-redis/tools/ci.py build-cmake-standalone-tests \
254
+ docker exec builder /boost-redis/tools/ci.py build-cmake-standalone-tests \
255
255
--build-type ${{ matrix.build-type }} \
256
256
--cxxstd ${{ matrix.cxxstd }} \
257
257
--toolset ${{ matrix.toolset }}
258
258
259
259
- name : Run the project tests
260
260
run : |
261
- docker exec -it builder /boost-redis/tools/ci.py run-cmake-standalone-tests \
261
+ docker exec builder /boost-redis/tools/ci.py run-cmake-standalone-tests \
262
262
--build-type ${{ matrix.build-type }}
263
263
264
264
- name : Run add_subdirectory tests
265
265
run : |
266
- docker exec -it builder /boost-redis/tools/ci.py run-cmake-add-subdirectory-tests \
266
+ docker exec builder /boost-redis/tools/ci.py run-cmake-add-subdirectory-tests \
267
267
--build-type ${{ matrix.build-type }} \
268
268
--cxxstd ${{ matrix.cxxstd }} \
269
269
--toolset ${{ matrix.toolset }}
270
270
271
271
- name : Run find_package tests with the built cmake distribution
272
272
run : |
273
- docker exec -it builder /boost-redis/tools/ci.py run-cmake-find-package-tests \
273
+ docker exec builder /boost-redis/tools/ci.py run-cmake-find-package-tests \
274
274
--build-type ${{ matrix.build-type }} \
275
275
--cxxstd ${{ matrix.cxxstd }} \
276
276
--toolset ${{ matrix.toolset }}
277
277
278
278
- name : Run find_package tests with the built b2 distribution
279
279
run : |
280
- docker exec -it builder /boost-redis/tools/ci.py run-cmake-b2-find-package-tests \
280
+ docker exec builder /boost-redis/tools/ci.py run-cmake-b2-find-package-tests \
281
281
--build-type ${{ matrix.build-type }} \
282
282
--cxxstd ${{ matrix.cxxstd }} \
283
283
--toolset ${{ matrix.toolset }}
0 commit comments