Skip to content

Commit 1b90346

Browse files
anarthalmzimbres
authored andcommitted
Removed interactive flag
1 parent 8f46d1e commit 1b90346

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ jobs:
223223
224224
- name: Install dependencies
225225
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 \
228228
git \
229229
libssl-dev \
230230
make \
@@ -235,49 +235,49 @@ jobs:
235235
${{ matrix.install }}
236236
237237
- 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
239239

240240
- name: Build a Boost distribution using B2
241241
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 \
243243
--toolset ${{ matrix.toolset }}
244244
245245
- name: Build a Boost distribution using CMake
246246
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 \
248248
--build-type ${{ matrix.build-type }} \
249249
--cxxstd ${{ matrix.cxxstd }} \
250250
--toolset ${{ matrix.toolset }}
251251
252252
- name: Build the project tests
253253
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 \
255255
--build-type ${{ matrix.build-type }} \
256256
--cxxstd ${{ matrix.cxxstd }} \
257257
--toolset ${{ matrix.toolset }}
258258
259259
- name: Run the project tests
260260
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 \
262262
--build-type ${{ matrix.build-type }}
263263
264264
- name: Run add_subdirectory tests
265265
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 \
267267
--build-type ${{ matrix.build-type }} \
268268
--cxxstd ${{ matrix.cxxstd }} \
269269
--toolset ${{ matrix.toolset }}
270270
271271
- name: Run find_package tests with the built cmake distribution
272272
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 \
274274
--build-type ${{ matrix.build-type }} \
275275
--cxxstd ${{ matrix.cxxstd }} \
276276
--toolset ${{ matrix.toolset }}
277277
278278
- name: Run find_package tests with the built b2 distribution
279279
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 \
281281
--build-type ${{ matrix.build-type }} \
282282
--cxxstd ${{ matrix.cxxstd }} \
283283
--toolset ${{ matrix.toolset }}

0 commit comments

Comments
 (0)