|
| 1 | +## Read more about GitHub actions the features of this GitHub Actions workflow |
| 2 | +## at https://lcolladotor.github.io/biocthis/articles/biocthis.html#use_bioc_github_action |
| 3 | +## |
| 4 | +## For more details, check the biocthis developer notes vignette at |
| 5 | +## https://lcolladotor.github.io/biocthis/articles/biocthis_dev_notes.html |
| 6 | +## |
| 7 | +## You can add this workflow to other packages using: |
| 8 | +## > biocthis::use_bioc_github_action() |
| 9 | +## or |
| 10 | +## > usethis::use_github_action("check-bioc", "https://bit.ly/biocthis_gha", "check-bioc.yml") |
| 11 | +## without having to install biocthis. |
| 12 | +## |
| 13 | +## Using GitHub Actions exposes you to many details about how R packages are |
| 14 | +## compiled and installed in several operating system.s |
| 15 | +### If you need help, please follow the steps listed at |
| 16 | +## https://github.com/r-lib/actions#where-to-find-help |
| 17 | +## |
| 18 | +## If you found an issue specific to biocthis's GHA workflow, please report it |
| 19 | +## with the information that will make it easier for others to help you. |
| 20 | +## Thank you! |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | +## Acronyms: |
| 25 | +## * GHA: GitHub Action |
| 26 | +## * OS: operating system |
| 27 | + |
| 28 | +## Specify which branches you want this GHA to run on. |
| 29 | +## Bioconductor uses branches such as master (bioc-devel) and RELEASE_* like |
| 30 | +## RELEASE_3_10. For more details check |
| 31 | +## http://bioconductor.org/developers/how-to/git/ |
| 32 | +on: |
| 33 | + push: |
| 34 | + branches: |
| 35 | + - master |
| 36 | + - 'RELEASE_*' |
| 37 | + pull_request: |
| 38 | + branches: |
| 39 | + - master |
| 40 | + - 'RELEASE_*' |
| 41 | + |
| 42 | +name: R-CMD-check-bioc |
| 43 | + |
| 44 | +## These environment variables control whether to run GHA code later on that is |
| 45 | +## specific to testthat, covr, and pkgdown. |
| 46 | +## |
| 47 | +## If you need to clear the cache of packages, update the number inside |
| 48 | +## cache-version as discussed at https://github.com/r-lib/actions/issues/86. |
| 49 | +## Note that you can always run a GHA test without the cache by using the word |
| 50 | +## "/nocache" in the commit message. |
| 51 | +env: |
| 52 | + has_testthat: 'true' |
| 53 | + run_covr: 'true' |
| 54 | + run_pkgdown: 'true' |
| 55 | + cache-version: 'cache-v1' |
| 56 | + |
| 57 | +jobs: |
| 58 | + ## This first job uses the GitHub repository branch name to infer what |
| 59 | + ## version of Bioconductor we will be working on. |
| 60 | + define-docker-info: |
| 61 | + runs-on: ubuntu-latest |
| 62 | + outputs: |
| 63 | + imagename: ${{ steps.findinfo.outputs.imagename }} |
| 64 | + biocversion: ${{ steps.findinfo.outputs.biocversion }} |
| 65 | + steps: |
| 66 | + - id: findinfo |
| 67 | + run: | |
| 68 | + ## Find what Bioconductor RELEASE branch we are working on |
| 69 | + ## otherwise, assume we are working on bioc-devel. |
| 70 | + if echo "$GITHUB_REF" | grep -q "RELEASE_"; then |
| 71 | + biocversion="$(basename -- $GITHUB_REF | tr '[:upper:]' '[:lower:]')" |
| 72 | + else |
| 73 | + biocversion="RELEASE_3_11" |
| 74 | + fi |
| 75 | + ## Define the image name and print the information |
| 76 | + imagename="bioconductor/bioconductor_docker:${biocversion}" |
| 77 | + echo $imagename |
| 78 | + echo $biocversion |
| 79 | + ## Save the information for the next job |
| 80 | + echo "::set-output name=imagename::${imagename}" |
| 81 | + echo "::set-output name=biocversion::${biocversion}" |
| 82 | + R-CMD-check-bioc: |
| 83 | + ## This job then checks the R package using the Bioconductor docker that |
| 84 | + ## was defined by the previous job. This job will determine what version of |
| 85 | + ## R to use for the macOS and Windows builds on the next job. |
| 86 | + runs-on: ubuntu-latest |
| 87 | + needs: define-docker-info |
| 88 | + |
| 89 | + ## Name shown on the GHA log |
| 90 | + name: ubuntu-latest (r-biocdocker bioc-${{ needs.define-docker-info.outputs.biocversion }}) |
| 91 | + |
| 92 | + ## Information used by the next job that will run on macOS and Windows |
| 93 | + outputs: |
| 94 | + rversion: ${{ steps.findrversion.outputs.rversion }} |
| 95 | + biocversionnum: ${{ steps.findrversion.outputs.biocversionnum }} |
| 96 | + |
| 97 | + ## Environment variables unique to this job. |
| 98 | + env: |
| 99 | + R_REMOTES_NO_ERRORS_FROM_WARNINGS: true |
| 100 | + TZ: UTC |
| 101 | + NOT_CRAN: true |
| 102 | + GITHUB_TOKEN: ${{ secrets.GHTOKEN2 }} |
| 103 | + GITHUB_PAT: ${{ secrets.GHTOKEN2 }} |
| 104 | + |
| 105 | + ## The docker container to use. Note that we link a directory on the GHA |
| 106 | + ## runner to a docker directory, such that we can then cache the linked |
| 107 | + ## directory. This directory will contain the R packages used. |
| 108 | + container: |
| 109 | + image: ${{ needs.define-docker-info.outputs.imagename }} |
| 110 | + volumes: |
| 111 | + - /home/runner/work/_temp/Library:/usr/local/lib/R/host-site-library |
| 112 | + |
| 113 | + steps: |
| 114 | + - name: Install Git |
| 115 | + run: | |
| 116 | + sudo apt-get update -y |
| 117 | + sudo apt install make libssl-dev libghc-zlib-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip -y |
| 118 | + wget https://github.com/git/git/archive/v2.26.2.zip -O git.zip |
| 119 | + unzip git.zip |
| 120 | + cd git-* |
| 121 | + make prefix=/usr all |
| 122 | + sudo make prefix=/usr install |
| 123 | + cd - |
| 124 | + git --version |
| 125 | + shell: bash {0} |
| 126 | + |
| 127 | + - name: Install GLPK |
| 128 | + run: | |
| 129 | + sudo apt-get update -y |
| 130 | + sudo apt-get install -y glpk-utils |
| 131 | + shell: bash {0} |
| 132 | + ## Related to https://github.com/actions/checkout/issues/238 |
| 133 | + ## https://www.digitalocean.com/community/tutorials/how-to-install-git-on-ubuntu-18-04 |
| 134 | + |
| 135 | + ## Most of these steps are the same as the ones in |
| 136 | + ## https://github.com/r-lib/actions/blob/master/examples/check-standard.yaml |
| 137 | + ## If they update their steps, we will also need to update ours. |
| 138 | + - uses: actions/checkout@v2 |
| 139 | + - name: Query dependencies |
| 140 | + run: | |
| 141 | + install.packages('remotes') |
| 142 | + saveRDS(remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE), ".github/depends.Rds", version = 2) |
| 143 | + message(paste('****', Sys.time(), 'installing BiocManager ****')) |
| 144 | + remotes::install_cran("BiocManager") |
| 145 | + shell: Rscript {0} |
| 146 | + |
| 147 | + ## Find the corresponding R version based on the Bioconductor version |
| 148 | + ## to use for the macOS and Windows checks by the next GHA job |
| 149 | + - id: findrversion |
| 150 | + name: Find Bioc and R versions |
| 151 | + run: | |
| 152 | + ## Find what branch we are working on |
| 153 | + if echo "$GITHUB_REF" | grep -q "master"; then |
| 154 | + biocversion="devel" |
| 155 | + elif echo "$GITHUB_REF" | grep -q "RELEASE_"; then |
| 156 | + biocversion="release" |
| 157 | + fi |
| 158 | + ## Define the R and Bioconductor version numbers |
| 159 | + biocversionnum=$(Rscript -e "info <- BiocManager:::.version_map_get_online('https://bioconductor.org/config.yaml'); res <- subset(info, BiocStatus == '${biocversion}')[, 'Bioc']; cat(as.character(res))") |
| 160 | + rversion=$(Rscript -e "info <- BiocManager:::.version_map_get_online('https://bioconductor.org/config.yaml'); res <- subset(info, BiocStatus == '${biocversion}')[, 'R']; cat(as.character(res))") |
| 161 | + ## Print the results |
| 162 | + echo $biocversion |
| 163 | + echo $biocversionnum |
| 164 | + echo $rversion |
| 165 | + ## Save the info for the next job |
| 166 | + echo "::set-output name=rversion::${rversion}" |
| 167 | + echo "::set-output name=biocversionnum::${biocversionnum}" |
| 168 | + shell: |
| 169 | + bash {0} |
| 170 | + |
| 171 | + - name: Cache R packages |
| 172 | + if: "!contains(github.event.head_commit.message, '/nocache')" |
| 173 | + uses: actions/cache@v1 |
| 174 | + with: |
| 175 | + path: /home/runner/work/_temp/Library |
| 176 | + key: ${{ env.cache-version }}-${{ runner.os }}-biocdocker-biocbranch-${{ needs.define-docker-info.outputs.biocversion }}-r-${{ steps.findrversion.outputs.rversion }}-bioc-${{ steps.findrversion.outputs.biocversionnum }}-${{ hashFiles('.github/depends.Rds') }} |
| 177 | + restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocdocker-biocbranch-${{ needs.define-docker-info.outputs.biocversion }}-r-${{ steps.findrversion.outputs.rversion }}-bioc-${{ steps.findrversion.outputs.biocversionnum }}- |
| 178 | + |
| 179 | + - name: Install dependencies |
| 180 | + run: | |
| 181 | + ## Try installing the package dependencies in steps. First the local |
| 182 | + ## dependencies, then any remaining dependencies to avoid the |
| 183 | + ## issues described at |
| 184 | + ## https://stat.ethz.ch/pipermail/bioc-devel/2020-April/016675.html |
| 185 | + ## https://github.com/r-lib/remotes/issues/296 |
| 186 | + ## Ideally, all dependencies should get installed in the first pass. |
| 187 | + ## Pass #1 at installing dependencies |
| 188 | + message(paste('****', Sys.time(), 'pass number 1 at installing dependencies: local dependencies ****')) |
| 189 | + local_deps <- remotes::local_package_deps("MyCoursePackage/",dependencies = TRUE) |
| 190 | + deps <- remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE, repos = BiocManager::repositories()) |
| 191 | + BiocManager::install(local_deps[local_deps %in% deps$package[deps$diff != 0]]) |
| 192 | + ## Pass #2 at installing dependencies |
| 193 | + message(paste('****', Sys.time(), 'pass number 2 at installing dependencies: any remaining dependencies ****')) |
| 194 | + deps <- remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE, repos = BiocManager::repositories()) |
| 195 | + BiocManager::install(deps$package[deps$diff != 0]) |
| 196 | + ## For running the checks |
| 197 | + message(paste('****', Sys.time(), 'installing rcmdcheck and BiocCheck ****')) |
| 198 | + remotes::install_cran("rcmdcheck") |
| 199 | + BiocManager::install("BiocCheck") |
| 200 | + BiocManager::install("rmarkdown") |
| 201 | + BiocManager::install("RockefellerUniversity/compileCourses",subdir="compileCourses") |
| 202 | + BiocManager::install("RockefellerUniversity/Herper") |
| 203 | + BiocManager::install("BSgenome") |
| 204 | + BiocManager::install("BSgenome.Mmusculus.UCSC.mm10") |
| 205 | + shell: Rscript {0} |
| 206 | + |
| 207 | + - name: Session info |
| 208 | + run: | |
| 209 | + options(width = 100) |
| 210 | + pkgs <- installed.packages()[, "Package"] |
| 211 | + sessioninfo::session_info(pkgs, include_base = TRUE) |
| 212 | + shell: Rscript {0} |
| 213 | + |
| 214 | + - name: Install package |
| 215 | + if: github.ref == 'refs/heads/master' |
| 216 | + run: R CMD INSTALL ./MyCoursePackage/ |
| 217 | + |
| 218 | + - name: Session info |
| 219 | + run: | |
| 220 | + require(compileCourses) |
| 221 | + compileCourses::compileSingleCourseMaterial(repo="RockefellerUniversity",subdir="MyCoursePackage",branch="master") |
| 222 | + shell: Rscript {0} |
| 223 | + |
| 224 | + - name: Move to docs |
| 225 | + run: | |
| 226 | + mkdir -p docs |
| 227 | + rm -r r_course/*/*/*_cache |
| 228 | + cp -r r_course/* docs/ |
| 229 | + echo "Copied to docs" |
| 230 | + shell: |
| 231 | + bash {0} |
| 232 | + |
| 233 | + - name: commit |
| 234 | + run: | |
| 235 | + git config --global user.email "[email protected]" |
| 236 | + git add docs/\* r_course/\* |
| 237 | + git commit -m 'Autobuild' |
| 238 | + git push origin HEAD:refs/heads/master |
| 239 | +
|
| 240 | + - name: Upload check results |
| 241 | + if: failure() |
| 242 | + uses: actions/upload-artifact@master |
| 243 | + with: |
| 244 | + name: ${{ runner.os }}-biocdocker-biocbranch-${{ needs.define-docker-info.outputs.biocversion }}-r-${{ steps.findrversion.outputs.rversion }}-bioc-${{ steps.findrversion.outputs.biocversionnum }}-results |
| 245 | + path: check |
0 commit comments