-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from MTES-MCT/36-CI
36 ci mise en route avec les dépendances telles que nécessaires ce matin
- Loading branch information
Showing
13 changed files
with
113 additions
and
225 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Déploiement de parcours_r_module6_publications_reproductibles | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-deploy-bookdown: | ||
name: Build and bookdown | ||
uses: MTES-MCT/parcours-r/.github/workflows/bookdown-build-from-desc-and-deploy.yml@master | ||
with: | ||
r_version: '4.4.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Test compilation de parcours_r_module6_publications_reproductibles | ||
|
||
on: | ||
pull_request: | ||
branches: [main, master, dev, dev-ci, 36-CI] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build-bookdown: | ||
name: Build bookdown | ||
uses: MTES-MCT/parcours-r/.github/workflows/bookdown-build-from-desc.yml@master | ||
with: | ||
r_version: '4.4.1' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Image docker parcours_r_module6_publications_reproductibles | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- dev | ||
- 36-CI | ||
paths: | ||
- .github/workflows/rstudio-image-build.yml | ||
- Dockerfile | ||
- DESCRIPTION | ||
|
||
pull_request: | ||
types: | ||
- created | ||
branches: | ||
- main | ||
- master | ||
- dev | ||
paths: | ||
- .github/workflows/rstudio-image-build.yml | ||
- Dockerfile | ||
- DESCRIPTION | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build-rstudio-image: | ||
uses: MTES-MCT/parcours-r/.github/workflows/rstudio-image-build.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Type: Book | ||
Package: Parcours-R-M6 | ||
Title: Parcours R M6 Publications Reproductibles avec RMarkdown | ||
Version: 0.1.0 | ||
Description: Valise pédagogique pour le module 6 du parcours R : Publications Reproductibles avec RMarkdown | ||
License: MIT | ||
URL: https://github.com/MTES-MCT/parcours_r_module_publication_rmarkdown | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
Imports: | ||
COVID19, | ||
dplyr, | ||
COGiter, | ||
emo, | ||
ggplot2, | ||
gouvdown, | ||
gouvdown.fonts, | ||
glue, | ||
htmltools, | ||
kableExtra, | ||
knitr, | ||
lubridate, | ||
metathis, | ||
pagedown, | ||
readr, | ||
rmarkdown, | ||
savoirfR, | ||
scales, | ||
showtext, | ||
stringi, | ||
tidyr, | ||
tidyverse, | ||
tinytex, | ||
xaringan, | ||
xaringanExtra, | ||
xaringanthemer | ||
Remotes: | ||
hadley/emo, | ||
MaelTheuliere/COGiter, | ||
MTES-MCT/savoirfR, | ||
spyrales/gouvdown, | ||
spyrales/gouvdown.fonts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ARG R_VERSION=4.4.1 | ||
|
||
FROM inseefrlab/onyxia-rstudio:r${R_VERSION} | ||
RUN apt-get update && apt-get install -y cargo | ||
RUN R -e "install.packages('remotes', repos = c(CRAN = 'https://cloud.r-project.org'))" | ||
COPY DESCRIPTION DESCRIPTION | ||
RUN R -e 'remotes::install_deps(dependencies = TRUE)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.