Skip to content

Commit b79e2b1

Browse files
committed
Turn off ci
1 parent 3b417f1 commit b79e2b1

3 files changed

Lines changed: 189 additions & 189 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2-
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3-
on:
4-
push:
5-
branches: [main, master]
6-
pull_request:
7-
branches: [main, master]
8-
workflow_dispatch:
9-
10-
name: 'R CMD check'
11-
12-
permissions: read-all
13-
14-
jobs:
15-
R-CMD-check:
16-
timeout-minutes: 10
17-
runs-on: ${{ matrix.config.os }}
18-
19-
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
20-
21-
strategy:
22-
fail-fast: true
23-
matrix:
24-
config:
25-
- {os: macos-latest, r: 'release'}
26-
- {os: windows-latest, r: 'release'}
27-
# - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
28-
- {os: ubuntu-latest, r: 'release'}
29-
- {os: ubuntu-latest, r: 'oldrel-1'}
30-
31-
env:
32-
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
33-
R_KEEP_PKG_SOURCE: yes
34-
35-
steps:
36-
- uses: actions/checkout@v4
37-
38-
- uses: r-lib/actions/setup-pandoc@v2
39-
40-
- uses: r-lib/actions/setup-r@v2
41-
with:
42-
r-version: ${{ matrix.config.r }}
43-
http-user-agent: ${{ matrix.config.http-user-agent }}
44-
use-public-rspm: true
45-
46-
- uses: r-lib/actions/setup-r-dependencies@v2
47-
with:
48-
extra-packages: any::rcmdcheck
49-
needs: check
50-
51-
- uses: r-lib/actions/check-r-package@v2
52-
with:
53-
upload-snapshots: true
54-
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
1+
# # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+
# # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
# on:
4+
# push:
5+
# branches: [main, master]
6+
# pull_request:
7+
# branches: [main, master]
8+
# workflow_dispatch:
9+
10+
# name: 'R CMD check'
11+
12+
# permissions: read-all
13+
14+
# jobs:
15+
# R-CMD-check:
16+
# timeout-minutes: 10
17+
# runs-on: ${{ matrix.config.os }}
18+
19+
# name: ${{ matrix.config.os }} (${{ matrix.config.r }})
20+
21+
# strategy:
22+
# fail-fast: true
23+
# matrix:
24+
# config:
25+
# - {os: macos-latest, r: 'release'}
26+
# - {os: windows-latest, r: 'release'}
27+
# # - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
28+
# - {os: ubuntu-latest, r: 'release'}
29+
# - {os: ubuntu-latest, r: 'oldrel-1'}
30+
31+
# env:
32+
# GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
33+
# R_KEEP_PKG_SOURCE: yes
34+
35+
# steps:
36+
# - uses: actions/checkout@v4
37+
38+
# - uses: r-lib/actions/setup-pandoc@v2
39+
40+
# - uses: r-lib/actions/setup-r@v2
41+
# with:
42+
# r-version: ${{ matrix.config.r }}
43+
# http-user-agent: ${{ matrix.config.http-user-agent }}
44+
# use-public-rspm: true
45+
46+
# - uses: r-lib/actions/setup-r-dependencies@v2
47+
# with:
48+
# extra-packages: any::rcmdcheck
49+
# needs: check
50+
51+
# - uses: r-lib/actions/check-r-package@v2
52+
# with:
53+
# upload-snapshots: true
54+
# build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

.github/workflows/pkgdown.yaml

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,84 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2-
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3-
on:
4-
# push:
5-
# branches: [main, master]
6-
# pull_request:
7-
# branches: [main, master]
8-
# release:
9-
# types: [published]
10-
workflow_dispatch:
1+
# # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+
# # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
# on:
4+
# # push:
5+
# # branches: [main, master]
6+
# # pull_request:
7+
# # branches: [main, master]
8+
# # release:
9+
# # types: [published]
10+
# workflow_dispatch:
1111

12-
name: 'pkgdown Quarto manuscript'
12+
# name: 'pkgdown Quarto manuscript'
1313

14-
permissions: read-all
14+
# permissions: read-all
1515

16-
jobs:
17-
pkgdown:
18-
timeout-minutes: 10
19-
runs-on: macos-latest
20-
# Only restrict concurrency for non-PR jobs
21-
concurrency:
22-
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
23-
env:
24-
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
25-
permissions:
26-
contents: write
27-
steps:
28-
- uses: actions/checkout@v4
16+
# jobs:
17+
# pkgdown:
18+
# timeout-minutes: 10
19+
# runs-on: macos-latest
20+
# # Only restrict concurrency for non-PR jobs
21+
# concurrency:
22+
# group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
23+
# env:
24+
# GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
25+
# permissions:
26+
# contents: write
27+
# steps:
28+
# - uses: actions/checkout@v4
2929

30-
- name: Set up Quarto
31-
uses: quarto-dev/quarto-actions/setup@v2
30+
# - name: Set up Quarto
31+
# uses: quarto-dev/quarto-actions/setup@v2
3232

33-
- uses: r-lib/actions/setup-pandoc@v2
33+
# - uses: r-lib/actions/setup-pandoc@v2
3434

35-
- uses: r-lib/actions/setup-tinytex@v2
36-
- run: tlmgr --version
35+
# - uses: r-lib/actions/setup-tinytex@v2
36+
# - run: tlmgr --version
3737

38-
- uses: r-lib/actions/setup-r@v2
39-
with:
40-
use-public-rspm: true
38+
# - uses: r-lib/actions/setup-r@v2
39+
# with:
40+
# use-public-rspm: true
4141

42-
- uses: r-lib/actions/setup-r-dependencies@v2
43-
with:
44-
extra-packages: |
45-
any::pkgdown
46-
local::.
47-
any::tidyverse
48-
any::gt
49-
any::here
50-
any::flextable
51-
any::ggh4x
52-
any::pkgdepR
53-
any::semPlot
54-
any::semptools
55-
any::magick
56-
any::pdftools
57-
any::cowplot
58-
any::tictoc
59-
any::mvtnorm
60-
any::katex
61-
any::ggExtra
62-
needs: website
42+
# - uses: r-lib/actions/setup-r-dependencies@v2
43+
# with:
44+
# extra-packages: |
45+
# any::pkgdown
46+
# local::.
47+
# any::tidyverse
48+
# any::gt
49+
# any::here
50+
# any::flextable
51+
# any::ggh4x
52+
# any::pkgdepR
53+
# any::semPlot
54+
# any::semptools
55+
# any::magick
56+
# any::pdftools
57+
# any::cowplot
58+
# any::tictoc
59+
# any::mvtnorm
60+
# any::katex
61+
# any::ggExtra
62+
# needs: website
6363

64-
- name: Build site
65-
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
66-
shell: Rscript {0}
64+
# - name: Build site
65+
# run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
66+
# shell: Rscript {0}
6767

68-
- name: Render brsem manuscript
69-
uses: quarto-dev/quarto-actions/render@v2
70-
with:
71-
path: manuscript/brsem/
68+
# - name: Render brsem manuscript
69+
# uses: quarto-dev/quarto-actions/render@v2
70+
# with:
71+
# path: manuscript/brsem/
7272

73-
- name: Render plugin manuscript
74-
uses: quarto-dev/quarto-actions/render@v2
75-
with:
76-
path: manuscript/plugin
73+
# - name: Render plugin manuscript
74+
# uses: quarto-dev/quarto-actions/render@v2
75+
# with:
76+
# path: manuscript/plugin
7777

78-
- name: Deploy to GitHub pages 🚀
79-
if: github.event_name != 'pull_request'
80-
uses: JamesIves/github-pages-deploy-action@v4.5.0
81-
with:
82-
clean: false
83-
branch: gh-pages
84-
folder: docs
78+
# - name: Deploy to GitHub pages 🚀
79+
# if: github.event_name != 'pull_request'
80+
# uses: JamesIves/github-pages-deploy-action@v4.5.0
81+
# with:
82+
# clean: false
83+
# branch: gh-pages
84+
# folder: docs
Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,63 @@
1-
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2-
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3-
on:
4-
push:
5-
branches: [main, master]
6-
pull_request:
7-
branches: [main, master]
8-
workflow_dispatch:
9-
10-
name: 'Code coverage'
11-
12-
permissions: read-all
13-
14-
jobs:
15-
test-coverage:
16-
timeout-minutes: 5
17-
runs-on: ubuntu-latest
18-
env:
19-
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
20-
21-
steps:
22-
- uses: actions/checkout@v4
23-
24-
- uses: r-lib/actions/setup-r@v2
25-
with:
26-
use-public-rspm: true
27-
28-
- uses: r-lib/actions/setup-r-dependencies@v2
29-
with:
30-
extra-packages: any::covr, any::xml2
31-
needs: coverage
32-
33-
- name: Test coverage
34-
run: |
35-
cov <- covr::package_coverage(
36-
quiet = FALSE,
37-
clean = FALSE,
38-
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
39-
)
40-
covr::to_cobertura(cov)
41-
shell: Rscript {0}
42-
43-
- uses: codecov/codecov-action@v4
44-
with:
45-
fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
46-
file: ./cobertura.xml
47-
plugin: noop
48-
disable_search: true
49-
token: ${{ secrets.CODECOV_TOKEN }}
50-
51-
- name: Show testthat output
52-
if: always()
53-
run: |
54-
## --------------------------------------------------------------------
55-
find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true
56-
shell: bash
57-
58-
- name: Upload test results
59-
if: failure()
60-
uses: actions/upload-artifact@v4
61-
with:
62-
name: coverage-test-failures
63-
path: ${{ runner.temp }}/package
1+
# # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+
# # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
# on:
4+
# push:
5+
# branches: [main, master]
6+
# pull_request:
7+
# branches: [main, master]
8+
# workflow_dispatch:
9+
10+
# name: 'Code coverage'
11+
12+
# permissions: read-all
13+
14+
# jobs:
15+
# test-coverage:
16+
# timeout-minutes: 5
17+
# runs-on: ubuntu-latest
18+
# env:
19+
# GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
20+
21+
# steps:
22+
# - uses: actions/checkout@v4
23+
24+
# - uses: r-lib/actions/setup-r@v2
25+
# with:
26+
# use-public-rspm: true
27+
28+
# - uses: r-lib/actions/setup-r-dependencies@v2
29+
# with:
30+
# extra-packages: any::covr, any::xml2
31+
# needs: coverage
32+
33+
# - name: Test coverage
34+
# run: |
35+
# cov <- covr::package_coverage(
36+
# quiet = FALSE,
37+
# clean = FALSE,
38+
# install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
39+
# )
40+
# covr::to_cobertura(cov)
41+
# shell: Rscript {0}
42+
43+
# - uses: codecov/codecov-action@v4
44+
# with:
45+
# fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
46+
# file: ./cobertura.xml
47+
# plugin: noop
48+
# disable_search: true
49+
# token: ${{ secrets.CODECOV_TOKEN }}
50+
51+
# - name: Show testthat output
52+
# if: always()
53+
# run: |
54+
# ## --------------------------------------------------------------------
55+
# find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true
56+
# shell: bash
57+
58+
# - name: Upload test results
59+
# if: failure()
60+
# uses: actions/upload-artifact@v4
61+
# with:
62+
# name: coverage-test-failures
63+
# path: ${{ runner.temp }}/package

0 commit comments

Comments
 (0)