Skip to content

Commit 14ca9a5

Browse files
authored
Merge pull request #340 from ropensci/release_0.14.1
Release 0.14.1
2 parents aa81ef2 + 6553333 commit 14ca9a5

File tree

9 files changed

+112
-14
lines changed

9 files changed

+112
-14
lines changed

‎.circleci/config.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# r-devel-env
6565
environment:
6666
docker:
67-
- image: rocker/verse:devel
67+
- image: rocker/tidyverse:devel
6868
steps:
6969
- checkout
7070

‎.github/workflows/rhub.yaml‎

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
2+
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
3+
# You can update this file to a newer version using the rhub2 package:
4+
#
5+
# rhub::rhub_setup()
6+
#
7+
# It is unlikely that you need to modify this file manually.
8+
9+
name: R-hub
10+
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"
11+
12+
on:
13+
workflow_dispatch:
14+
inputs:
15+
config:
16+
description: 'A comma separated list of R-hub platforms to use.'
17+
type: string
18+
default: 'linux,windows,macos'
19+
name:
20+
description: 'Run name. You can leave this empty now.'
21+
type: string
22+
id:
23+
description: 'Unique ID. You can leave this empty now.'
24+
type: string
25+
26+
jobs:
27+
28+
setup:
29+
runs-on: ubuntu-latest
30+
outputs:
31+
containers: ${{ steps.rhub-setup.outputs.containers }}
32+
platforms: ${{ steps.rhub-setup.outputs.platforms }}
33+
34+
steps:
35+
# NO NEED TO CHECKOUT HERE
36+
- uses: r-hub/actions/setup@v1
37+
with:
38+
config: ${{ github.event.inputs.config }}
39+
id: rhub-setup
40+
41+
linux-containers:
42+
needs: setup
43+
if: ${{ needs.setup.outputs.containers != '[]' }}
44+
runs-on: ubuntu-latest
45+
name: ${{ matrix.config.label }}
46+
strategy:
47+
fail-fast: false
48+
matrix:
49+
config: ${{ fromJson(needs.setup.outputs.containers) }}
50+
container:
51+
image: ${{ matrix.config.container }}
52+
53+
steps:
54+
- uses: r-hub/actions/checkout@v1
55+
- uses: r-hub/actions/platform-info@v1
56+
with:
57+
token: ${{ secrets.RHUB_TOKEN }}
58+
job-config: ${{ matrix.config.job-config }}
59+
- uses: r-hub/actions/setup-deps@v1
60+
with:
61+
token: ${{ secrets.RHUB_TOKEN }}
62+
job-config: ${{ matrix.config.job-config }}
63+
- uses: r-hub/actions/run-check@v1
64+
with:
65+
token: ${{ secrets.RHUB_TOKEN }}
66+
job-config: ${{ matrix.config.job-config }}
67+
68+
other-platforms:
69+
needs: setup
70+
if: ${{ needs.setup.outputs.platforms != '[]' }}
71+
runs-on: ${{ matrix.config.os }}
72+
name: ${{ matrix.config.label }}
73+
strategy:
74+
fail-fast: false
75+
matrix:
76+
config: ${{ fromJson(needs.setup.outputs.platforms) }}
77+
78+
steps:
79+
- uses: r-hub/actions/checkout@v1
80+
- uses: r-hub/actions/setup-r@v1
81+
with:
82+
job-config: ${{ matrix.config.job-config }}
83+
token: ${{ secrets.RHUB_TOKEN }}
84+
- uses: r-hub/actions/platform-info@v1
85+
with:
86+
token: ${{ secrets.RHUB_TOKEN }}
87+
job-config: ${{ matrix.config.job-config }}
88+
- uses: r-hub/actions/setup-deps@v1
89+
with:
90+
job-config: ${{ matrix.config.job-config }}
91+
token: ${{ secrets.RHUB_TOKEN }}
92+
- uses: r-hub/actions/run-check@v1
93+
with:
94+
job-config: ${{ matrix.config.job-config }}
95+
token: ${{ secrets.RHUB_TOKEN }}

‎DESCRIPTION‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
Type: Package
22
Package: tic
33
Title: Tasks Integrating Continuously: CI-Agnostic Workflow Definitions
4-
Version: 0.14.0
4+
Version: 0.14.1
55
Authors@R: c(
6-
person("Patrick", "Schratz", , "[email protected]", role = c("aut", "cre"),
6+
person("Eli", "Miller", , "[email protected]", role = c("aut", "cre"),
7+
comment = c(ORCID = "0000-0002-2127-9456")),
8+
person("Patrick", "Schratz", role = c("aut"),
79
comment = c(ORCID = "0000-0003-0748-6624")),
810
person("Kirill", "Müller", role = "aut",
911
comment = c(ORCID = "0000-0002-1416-3412")),
@@ -77,7 +79,7 @@ Config/testthat/edition: 3
7779
Config/testthat/parallel: true
7880
Encoding: UTF-8
7981
Roxygen: list(markdown = TRUE)
80-
RoxygenNote: 7.2.3
82+
RoxygenNote: 7.3.2
8183
SystemRequirements: sodium harfbuzz fribidi libgit2
8284
Collate:
8385
'base64.R'

‎R/update-yaml.R‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' `"tic.yml"` and `"tic-db.yml"`.
99
#'
1010
#' @section Formatting requirements of tic YAML templates: To ensure that
11-
#' updating of {tic} templates works, ensure the following points:
11+
#' updating of \pkg{tic} templates works, ensure the following points:
1212
#' - Your template contains the type (e.g. linux-matrix-deploy) and the revision
1313
#' date in its first two lines.
1414
#' - When inserting comments into custom code blocks, only one-line comments are

‎R/use-yaml.R‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#' @param quiet `[logical]`\cr
1313
#' Whether to print informative messages.
1414
#' @section pkgdown:
15-
#' If `type` contains "deploy", {tic} by default also sets the environment
15+
#' If `type` contains "deploy", \pkg{tic} by default also sets the environment
1616
#' variable `BUILD_PKGDOWN=true`. This triggers a call to
1717
#' `pkgdown::build_site()` via the `do_pkgdown` macro in `tic.R` for the
1818
#' respective runners.

‎man/step_build_pkgdown.Rd‎

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎man/tic-package.Rd‎

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎man/update_yml.Rd‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎man/yaml_templates.Rd‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)