We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 038762f commit d7de206Copy full SHA for d7de206
1 file changed
.github/workflows/ci.sapien.yml
@@ -7,8 +7,13 @@ jobs:
7
runs-on: codebuild-Tmp2-${{ github.run_id }}-${{ github.run_attempt }}
8
steps:
9
- uses: actions/checkout@v4
10
+ - run: nvidia-smi
11
- run: docker build -f ci/docker/Dockerfile.lightweight -t ci.lightweight .
12
- run: docker run -d --runtime=nvidia --privileged=true -v .:/root/RoboVerse -it --name ci.lightweight ci.lightweight
13
+ - run: >
14
+ docker exec ci.lightweight
15
+ conda run --no-capture-output -n metasim
16
+ python -c "import torch; print(torch.cuda.is_available())"
17
- run: >
18
docker exec ci.lightweight
19
conda run --no-capture-output -n metasim
0 commit comments