Merge pull request #347 from antmicro/makeenv

Change conda environment setup to use make-env
This commit is contained in:
Robert Winkler 2020-09-16 16:49:19 +02:00 committed by GitHub
commit 8779de251d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 22 additions and 46 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
build/
env/
*.pyc
*.sw*

3
.gitmodules vendored
View File

@ -15,3 +15,6 @@
[submodule "source/vtr-verilog-to-routing"]
path = source/vtr-verilog-to-routing
url = ../vtr-verilog-to-routing
[submodule "third_party/make-env"]
path = third_party/make-env
url = https://github.com/SymbiFlow/make-env/

View File

@ -1,5 +1,18 @@
# Makefile for Sphinx documentation
# make-env setup -------------------------------------------------------------
TOP_DIR := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
# A pip `requirements.txt` file.
# https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format
REQUIREMENTS_FILE := requirements.txt
#
# A conda `environment.yml` file.
# https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
ENVIRONMENT_FILE := environment.yml
include third_party/make-env/conda.mk
# Makefile for Sphinx documentation ------------------------------------------
# You can set these variables from the command line.
SPHINXOPTS =
@ -12,9 +25,6 @@ PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
CONDA_DIR = build/conda
CONDA_ENV_FILE = environment.yml
DOXYGEN_DIR = build/doxygen
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp epub latex latexpdf text man changes linkcheck doctest env
@ -36,9 +46,8 @@ help:
@echo " linkcheck to check all external links for integrity"
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
@echo " env to create a conda environment with the needed packages"
@echo " env-clean to remove the conda environment"
clean:
clean::
-rm -rf $(BUILDDIR)/
-rm -rf $(DOXYGEN_DIR)/
@ -118,17 +127,3 @@ doctest:
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
@echo "Testing of doctests in the sources finished, look at the " \
"results in $(BUILDDIR)/doctest/output.txt."
env:
@rm -rf $(CONDA_DIR)
@mkdir -p $(CONDA_DIR)
@wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh\
-O $(CONDA_DIR)/miniconda.sh
@bash $(CONDA_DIR)/miniconda.sh -f -b -p $(CONDA_DIR) > /dev/null &&\
echo "Conda environment created successfully..."
@./$(CONDA_DIR)/bin/conda env create -q -f $(CONDA_ENV_FILE) > /dev/null &&\
echo "Conda packages installed successfully..."
@echo "To use conda environment type:\nsource enter-env.sh"
env-clean:
@rm -rf $(CONDA_DIR)

View File

@ -8,7 +8,7 @@ Building documentation
Activate the virtual environment and install dependencies::
make env
source enter-env.sh
make enter
Build the whole documentation::

View File

@ -1,24 +0,0 @@
#!/bin/bash
if [ ! -n "${BASH_VERSION}" ]; then
echo "This script has to be sourced in bash!"
exit 1
fi
[[ "${BASH_SOURCE[0]}" != "${0}" ]] && SOURCED=1 || SOURCED=0
if [ ${SOURCED} == 0 ]; then
echo "This script has to be sourced!"
exit 1
fi
CONDA_DIR=${PWD}/build/conda
CONDA_DIR_NAME=SymbiFlow-docs
export PATH="${CONDA_DIR}/bin:$PATH"
# Use Conda hook for user shell
SHELL_NAME=`basename $SHELL`
CONDA_HOOK_COMMAND="${CONDA_DIR}/bin/conda shell.${SHELL_NAME} hook"
eval "$(${CONDA_HOOK_COMMAND})"
conda activate ${CONDA_DIR_NAME}

View File

@ -1,4 +1,4 @@
name: SymbiFlow-docs
name: symbiflow-docs
channels:
- symbiflow
- conda-forge

1
third_party/make-env vendored Submodule

@ -0,0 +1 @@
Subproject commit 069663287b59b07e67c15fc88ec9faf850ca1580