From 4260e64ab4c6f264f12ad9f3bfd4da6635044d4f Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Wed, 4 Dec 2019 05:26:37 -0500 Subject: [PATCH 1/8] add --- buildspec.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 0000000..cc3dab9 --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,20 @@ +version: 0.2 + +phases: + install: + runtime-versions: + python: "3.7" + commands: + - apt-get -qq install pandoc -y + - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild nbsphinx -q + pre_build: + commands: + - python --version + - pip --version + build: + commands: + - make clean && make html + post_build: + commands: + - aws s3 sync build/html s3://rpa.oneoffcoder.com --quiet + - echo Build completed on `date` From 1e8116c6b5239f12098c9695d80201f7895b2241 Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Wed, 4 Dec 2019 05:36:29 -0500 Subject: [PATCH 2/8] update python --- buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index cc3dab9..e97a290 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -3,7 +3,7 @@ version: 0.2 phases: install: runtime-versions: - python: "3.7" + python: "3.8" commands: - apt-get -qq install pandoc -y - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild nbsphinx -q From 3561e3232076ab1315736826a9b863a761a9574d Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Wed, 4 Dec 2019 05:50:26 -0500 Subject: [PATCH 3/8] remove quiet --- buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index e97a290..90efa52 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -16,5 +16,5 @@ phases: - make clean && make html post_build: commands: - - aws s3 sync build/html s3://rpa.oneoffcoder.com --quiet + - aws s3 sync build/html s3://rpa.oneoffcoder.com - echo Build completed on `date` From 9b4dc62b0c5877144a9fc6a1de79f33bf1de9fad Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Wed, 4 Dec 2019 06:03:31 -0500 Subject: [PATCH 4/8] revert --- buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index 90efa52..e97a290 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -16,5 +16,5 @@ phases: - make clean && make html post_build: commands: - - aws s3 sync build/html s3://rpa.oneoffcoder.com + - aws s3 sync build/html s3://rpa.oneoffcoder.com --quiet - echo Build completed on `date` From 0eca208e876149365a5d3a2c2374338b3ea5af31 Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Thu, 5 Dec 2019 22:28:38 -0500 Subject: [PATCH 5/8] add --- buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index e97a290..1d57a79 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -6,7 +6,7 @@ phases: python: "3.8" commands: - apt-get -qq install pandoc -y - - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild nbsphinx -q + - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild sphinx-sitemap nbsphinx -q pre_build: commands: - python --version From a6a153a50db136078db2a3289bc6ab99154e47cd Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Mon, 25 May 2020 12:53:50 -0400 Subject: [PATCH 6/8] update remove flag --- buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index 1d57a79..6e6c138 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -5,7 +5,7 @@ phases: runtime-versions: python: "3.8" commands: - - apt-get -qq install pandoc -y + - apt-get install pandoc -y - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild sphinx-sitemap nbsphinx -q pre_build: commands: From 6163cd5e572ac4d936f135d5dd4c4daf8379b1f2 Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Mon, 25 May 2020 13:03:01 -0400 Subject: [PATCH 7/8] update --- buildspec.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index 6e6c138..5950a2c 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -5,7 +5,8 @@ phases: runtime-versions: python: "3.8" commands: - - apt-get install pandoc -y + - apt-get update + - apt-get -qq install pandoc -y - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild sphinx-sitemap nbsphinx -q pre_build: commands: From 03429164337511beab671b5d964e643491cc051a Mon Sep 17 00:00:00 2001 From: "Jee Vang, Ph.D" Date: Tue, 17 Nov 2020 23:39:08 -0500 Subject: [PATCH 8/8] add package --- buildspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildspec.yml b/buildspec.yml index 5950a2c..78f67d0 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -7,7 +7,7 @@ phases: commands: - apt-get update - apt-get -qq install pandoc -y - - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinx-autobuild sphinx-sitemap nbsphinx -q + - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinxcontrib-blockdiag sphinx-autobuild sphinx-sitemap nbsphinx -q pre_build: commands: - python --version