@@ -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- -c "while true; do sleep 1; done"
151+ /bin/bash -c "while true; do sleep 1; done"
152152
153153 - name : Run validation in test pipeline
154154 run : |
155- docker exec genie-container \
155+ docker exec -it genie-container /bin/bash \
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 genie-container \
164+ docker exec -it genie-container /bin/bash \
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 genie-container \
169+ docker exec -it genie-container /bin/bash \
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 genie-container \
177+ docker exec -it genie-container /bin/bash \
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 genie-container \
182+ docker exec -it genie-container /bin/bash \
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