Skip to content

Commit aa16dd2

Browse files
committed
remove interactive mode
1 parent 01ff754 commit aa16dd2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ jobs:
148148
docker run -d --name genie-container \
149149
-e SYNAPSE_AUTH_TOKEN="${{ secrets.SYNAPSE_AUTH_TOKEN }}" \
150150
ghcr.io/sage-bionetworks/genie:${{ github.ref_name }} \
151-
/bin/bash -c "while true; do sleep 1; done"
151+
sh -c "while true; do sleep 1; done"
152152
153153
- name: Run validation in test pipeline
154154
run: |
155-
docker exec -it genie-container /bin/bash \
155+
docker exec genie-container \
156156
python3 /root/Genie/bin/input_to_database.py \
157157
mutation \
158158
--project_id ${{ env.TEST_PROJECT_SYNID }} \
@@ -161,25 +161,25 @@ jobs:
161161
162162
- name: Run processing on non-mutation data in test pipeline
163163
run: |
164-
docker exec -it genie-container /bin/bash \
164+
docker exec genie-container \
165165
python3 /root/Genie/bin/input_to_database.py main --project_id ${{ env.TEST_PROJECT_SYNID }} --deleteOld
166166
167167
- name: Run processing on mutation data in test pipeline
168168
run: |
169-
docker exec -it genie-container /bin/bash \
169+
docker exec genie-container \
170170
python3 /root/Genie/bin/input_to_database.py mutation --project_id ${{ env.TEST_PROJECT_SYNID }} \
171171
--deleteOld \
172172
--genie_annotation_pkg /root/annotation-tools \
173173
--createNewMafDatabase
174174
175175
- name: Run consortium release in test pipeline
176176
run: |
177-
docker exec -it genie-container /bin/bash \
177+
docker exec genie-container \
178178
python3 /root/Genie/bin/database_to_staging.py Jan-2017 ../cbioportal TEST --test
179179
180180
- name: Run public release in test pipeline
181181
run: |
182-
docker exec -it genie-container /bin/bash \
182+
docker exec genie-container \
183183
python3 /root/Genie/bin/consortium_to_public.py Jan-2017 ../cbioportal TEST --test
184184
185185
- name: Stop and Remove Docker Container

0 commit comments

Comments
 (0)