From e807555b309957cff1d47d31bd9b56ee50d18b76 Mon Sep 17 00:00:00 2001 From: thequackdaddy Date: Mon, 3 Sep 2018 18:19:24 -0500 Subject: [PATCH] Add deploy instructions for appveyor --- README.rst | 11 ++++++++++- appveyor.yml | 13 +++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 959a06f..8b2c0bd 100644 --- a/README.rst +++ b/README.rst @@ -66,7 +66,7 @@ https://ci.appveyor.com/project/thequackdaddy/openblasr Pick the most recent build that succeeded and select the Artifact tab to download it. -Please note that it is important to set the ``PATH`` so that the _Rtools ``gcc`` +Please note that it is important to set the ``PATH`` so that the Rtools_ ``gcc`` compiler and ``make`` will be found before any other installation on the sytem. Additionally, ``pdflatex.exe`` needs to be in the path. ``MiKTeX`` needs a few additional packages to install everything, so be sure to either download @@ -83,6 +83,15 @@ https://ci.appveyor.com/project/thequackdaddy/r-openblas/ Select the most recent successful build and download the executable artifact. +.. code-block:: + + cd r-source + git checkout -t origin/tags/ + cd .. + git add r-source + git commit -m "Updated OpenBLAS" + git push origin + .. _openblas: http://www.openblas.net/ .. _R: https://www.r-project.org/ .. _Rtools: https://cran.r-project.org/bin/windows/Rtools/ diff --git a/appveyor.yml b/appveyor.yml index d08629d..803badf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -48,3 +48,16 @@ build_script: artifacts: - path: r-source/src/gnuwin32/installer/R*-win*.exe + +deploy: + release: ROpenBLAS-v$(appveyor_build_version) + description: 'This is R, but compiled for windwos using OpenBLAS' + provider: GitHub + auth_token: + secure: 6VduGFAfk0LDLzJDnzCakW7vldMxkkaw4OHCYkFqyecDV9sKE+MdEP5Go4zpmt3c + artifact: r-source/src/gnuwin32/installer/R*-win*.exe + draft: false + prerelease: false + on: + branch: master # release from master branch only + appveyor_repo_tag: true # deploy on tag push only