File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1919 # This workflow contains a single job called "build-test"
2020 build-test :
2121 # The type of runner that the job will run on Ubuntu 18.04 (latest)
22- runs-on : self-hosted
22+ runs-on : ubuntu-latest
2323
2424 # Steps represent a sequence of tasks that will be
2525 # executed as part of the job
6161 - build-test
6262
6363 # The type of runner that the job will run on Ubuntu 18.04 (latest)
64- runs-on : self-hosted
64+ runs-on : ubuntu-latest
6565
6666 # Steps represent a sequence of tasks that will be
6767 # executed as part of the job
Original file line number Diff line number Diff line change 1515# that can run sequentially or in parallel
1616jobs :
1717 run_test :
18- runs-on : self-hosted
18+ runs-on : ubuntu-latest
1919
2020 # Steps represent a sequence of tasks that will be
2121 # executed as part of the job
5050 BRANCH_NAME=${{ github.event.pull_request.head.ref }} ./run_test_container.sh
5151
5252 run_test_conda_gpu :
53- runs-on : self-hosted
53+ runs-on : ubuntu-latest
5454
5555 # Steps represent a sequence of tasks that will be
5656 # executed as part of the job
8888 ./run_test_container.sh
8989
9090 build_images :
91- runs-on : self-hosted
91+ runs-on : ubuntu-latest
9292 steps :
9393 # Checks-out your repository under $GITHUB_WORKSPACE,
9494 # so your job can access it
Original file line number Diff line number Diff line change 1919 # This workflow contains a single job called "build-test"
2020 build-test :
2121 # The type of runner that the job will run on Ubuntu 18.04 (latest)
22- runs-on : self-hosted
22+ runs-on : ubuntu-latest
2323
2424 # Steps represent a sequence of tasks that will be
2525 # executed as part of the job
5858 build_and_deploy_docs :
5959
6060 # The type of runner that the job will run on Ubuntu 18.04 (latest)
61- runs-on : self-hosted
61+ runs-on : ubuntu-latest
6262
6363 # Steps represent a sequence of tasks that will be
6464 # executed as part of the job
Original file line number Diff line number Diff line change 11FROM gcr.io/deeplearning-platform-release/pytorch-gpu.1-13
22
33RUN mkdir /aperturedata
4- ADD docker/tests /aperturedata /aperturedata
4+ ADD docker/pytorch-gpu /aperturedata /aperturedata
55
66RUN cd /aperturedata && pip install -e . && pip install -r requirements.txt
77RUN pip install opencv-python
88RUN apt-get update && apt-get install -y libopencv-dev python3-opencv
9- COPY docker/tests /scripts/start.sh /start.sh
9+ COPY docker/pytorch-gpu /scripts/start.sh /start.sh
1010RUN chmod 755 /start.sh
1111CMD ["/start.sh" ]
You can’t perform that action at this time.
0 commit comments