Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simplified container use thanks to hint by @enchufa2#1264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
eddelbuettel merged 2 commits intomasterfromfeature/docker_ci_improvement
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
NextNext commit
Simplified container use thanks to hint by@Enchufa2
  • Loading branch information
@eddelbuettel
eddelbuettel committedApr 12, 2023
commit9ceaafe0885e61cff880361b727480b4b3300741
15 changes: 9 additions & 6 deletions.github/workflows/ci.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
# Run CI for R using https://eddelbuettel.github.io/r-ci/
# This file is a slight variant by running a matrix of containers

name: ci

Expand All@@ -12,7 +13,12 @@ env:

jobs:
ci:

runs-on: ubuntu-latest

container:
image: ${{ matrix.cntr }}

strategy:
matrix:
include:
Expand DownExpand Up@@ -44,17 +50,14 @@ jobs:
# chmod 0755 run.sh
# ./run.sh bootstrap

- name: Container
run: docker pull ${{ matrix.cntr }}

- name: SessionInfo
run:docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }}${{ matrix.r }} -q -e 'sessionInfo()'
run: ${{ matrix.r }} -q -e 'sessionInfo()'

- name: Build
run:docker run --rm -i -v ${PWD}:/mnt -w /mnt ${{ matrix.cntr }}${{matrix.r }} CMD build --no-build-vignettes --no-manual .
run: ${{matrix.r }} CMD build --no-build-vignettes --no-manual .

- name: Check
run:docker run --rm -i -v ${PWD}:/mnt -w /mnt -e CI=true ${{ matrix.cntr }}${{ matrix.r }} CMD check --no-vignettes --no-manual Rcpp_*.tar.gz
run: ${{ matrix.r }} CMD check --no-vignettes --no-manual Rcpp_*.tar.gz

#covr:
# runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletionsChangeLog
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
2023-04-12 Dirk Eddelbuettel <edd@debian.org>

* .github/workflows/ci.yaml: Simplified container use

2023-03-27 Dirk Eddelbuettel <edd@debian.org>

* .github/workflows/stale.yaml: Roll to v8
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp