Skip to content

Commit

Permalink
ci: 👷 simplify the CI build process (#171)
Browse files Browse the repository at this point in the history
Doesn't really need a review, this is only meant to help simplify the CI
auto-build process.
  • Loading branch information
lwjohnst86 authored Dec 19, 2024
1 parent 75346cc commit e4740d4
Show file tree
Hide file tree
Showing 10 changed files with 220 additions and 210 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/R-CMD-check.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/build-package.yaml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: main
pull_request:
branches: main
release:
types: [published]

name: Build package

permissions: read-all

jobs:
style:
uses: ./.github/workflows/reusable-style.yaml
permissions:
contents: write
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}

document:
uses: ./.github/workflows/reusable-document.yaml
needs: style
permissions:
contents: write
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}

cran-check:
uses: ./.github/workflows/reusable-cran-check.yaml
needs: document
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}

pkgdown:
uses: ./.github/workflows/reusable-pkgdown.yaml
needs: cran-check
permissions:
contents: write
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
79 changes: 0 additions & 79 deletions .github/workflows/pr-commands.yaml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/puml-to-svg.yaml

This file was deleted.

52 changes: 52 additions & 0 deletions .github/workflows/reusable-cran-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
workflow_call:
secrets:
github-token:
required: true

name: Run R CMD checks and tests

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.github-token }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: |
check
tests
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
44 changes: 44 additions & 0 deletions .github/workflows/reusable-document.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
workflow_call:
secrets:
github-token:
required: true

name: Run roxygen2 to build function documentation

jobs:
document:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.github-token }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::roxygen2
needs: roxygen2

- name: Document
run: roxygen2::roxygenise()
shell: Rscript {0}

- name: Commit and push changes
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add man/\* NAMESPACE DESCRIPTION
git commit -m "Update documentation" || echo "No changes to commit"
git pull --ff-only
git push origin
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Build website

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
workflow_call:
secrets:
github-token:
required: true

name: Build the pkgdown website

jobs:
pkgdown:
Expand All @@ -12,9 +15,7 @@ jobs:
concurrency:
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
GITHUB_PAT: ${{ secrets.github-token }}
steps:
- uses: actions/checkout@v4

Expand Down
Loading

0 comments on commit e4740d4

Please # to comment.