Skip to content

Commit

Permalink
Merged with local
Browse files Browse the repository at this point in the history
  • Loading branch information
KDharmarajanDev committed Feb 27, 2024
2 parents 6107582 + 2c594e6 commit 69109ab
Show file tree
Hide file tree
Showing 131 changed files with 15,129 additions and 90 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/create-documentation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build Sphinx Documentation

on:
push:
branches:
- main # You can change this to whatever branch you want to trigger the build
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
working-directory: xembody

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8.18'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[docs]
- name: Build Documentation
run: |
make -C docs/ html
- name: Upload Documentation Artifacts
uses: actions/upload-artifact@v2
with:
name: docs
path: docs/build/html
43 changes: 43 additions & 0 deletions .github/workflows/static_webpage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './xembody/docs/build/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion mimicgen_environments
2 changes: 1 addition & 1 deletion robomimic
2 changes: 1 addition & 1 deletion robosuite
16 changes: 16 additions & 0 deletions xembody/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# xembody package

This repository contains the official implementation of Mirage, and a benchmarking platform for cross-embodiment research.

## Installation

## Usage

## Citation
If you utilized the benchmark, please consider citing
```
TODO: Add link to ArXiv / publication
```

## Contributing
Feel free to raise any concerns and bugs through the [issue]() portal, and submit PR with your own edits. Please reach out if some abstractions of features do not meet your needs, we are very eager to help with implementation.
20 changes: 20 additions & 0 deletions xembody/docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added xembody/docs/build/doctrees/environment.pickle
Binary file not shown.
Binary file not shown.
Binary file added xembody/docs/build/doctrees/index.doctree
Binary file not shown.
4 changes: 4 additions & 0 deletions xembody/docs/build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 6b94b17b1055196dbdf770cdf563fcc7
tags: 645f666f9bcd5a90fca523b33c5a78b7
Loading

0 comments on commit 69109ab

Please sign in to comment.