diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index aa06c8d1..00000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,46 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.236.0/containers/docker-existing-dockerfile -{ - "name": "Demos", - - "build": { - "dockerfile": "../docker/dockerfile", - "context": "../.." - }, - - "customizations": { - "vscode": { - "extensions": [ - "ms-python.python", - ] - } - }, - - "postCreateCommand": { - "post_create": "bash .devcontainer/post_create_commands.sh", - "bashrc": "echo \"alias python=python3\" >> ~/.bashrc" - }, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [], - - // Uncomment the next line to run commands after the container is created - for example installing curl. - - // Uncomment when using a ptrace-based debugger like C++, Go, and Rust - // "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], - - // Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker. - // "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ], - - // Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root. - // "remoteUser": "vscode", - "features": { - "ghcr.io/devcontainers/features/common-utils:2": { - "installZsh": true, - "configureZshAsDefaultShell": true, - "installOhMyZsh": true, - "upgradePackages": false - }, - "ghcr.io/devcontainers/features/docker-in-docker:2": {}, - } -} \ No newline at end of file diff --git a/.github/workflows/gcp-test.yaml b/.github/workflows/gcp-test.yaml index e0370b97..185f6589 100644 --- a/.github/workflows/gcp-test.yaml +++ b/.github/workflows/gcp-test.yaml @@ -26,7 +26,7 @@ jobs: - name: Start GPU VM run: | - cd demos/.github/auth + cd demos/tests/auth mkdir -p ~/.ssh touch ~/.ssh/id_rsa echo "${{ secrets.SSH_KEY }}" > $HOME/.ssh/id_rsa @@ -74,7 +74,7 @@ jobs: - name: Stop GPU VM run: | - cd demos/.github/auth + cd demos/tests/auth python3 db_auth.py ${{ secrets.DB_ENDPOINT }} ${{ secrets.DB_OBJ_ID }} python3 vm_auth.py ${{ secrets.SSH_USERNAME }} ${{ secrets.SSH_PASSPHRASE }} "true" diff --git a/docker/dockerfile b/docker/dockerfile deleted file mode 100644 index 1e028b72..00000000 --- a/docker/dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM unifyai/ivy:latest - -RUN pip3 install jupyter \ No newline at end of file diff --git a/.github/auth/db_auth.py b/tests/auth/db_auth.py similarity index 100% rename from .github/auth/db_auth.py rename to tests/auth/db_auth.py diff --git a/.github/auth/vm_auth.py b/tests/auth/vm_auth.py similarity index 100% rename from .github/auth/vm_auth.py rename to tests/auth/vm_auth.py