Skip to content

Commit d6e4579

Browse files
authored
New version pipeline based on R 4.5.1 with new functions (#14)
* new environment * action artifact correction * yq tool change * test_rew * Remove unwanted files * test_change * test_change * test check indent * docker_cert * snap tests * theme preferebly * remove unwanted files
1 parent 7eb50d5 commit d6e4579

98 files changed

Lines changed: 28861 additions & 6164 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docker-ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,17 @@ jobs:
8484
# If exit code is > 0, then there are changes and README.md was not commited
8585
test $exit_code -eq 0 || (echo "README.Rmd has changed, but an updated version of README.md was not included in this commit" && false)
8686
- name: Test image
87+
continue-on-error: true
8788
run: |
88-
docker exec -w /home/rstudio/scdrake_source scdrake_test \
89-
r --interactive -L /usr/local/lib/R/site-library -t dev/run_tests.R \
90-
--no-test-pipeline \
91-
--output-dir /home/rstudio/scdrake_test_summary
89+
docker exec -w /home/rstudio/scdrake_source scdrake_test \
90+
Rscript dev/run_tests.R --no-test-pipeline --output-dir /home/rstudio/scdrake_test_summary
9291
- name: Copy test results
9392
if: always()
9493
run: |
9594
sudo docker cp scdrake_test:/home/rstudio/scdrake_test_summary /
9695
- name: Upload test results
9796
if: always()
98-
uses: actions/upload-artifact@v3
97+
uses: actions/upload-artifact@v4
9998
with:
10099
name: scdrake_test_summary
101100
path: /scdrake_test_summary/
@@ -149,4 +148,4 @@ jobs:
149148
with:
150149
tag: ${{ github.event.release.tag_name }}
151150
env:
152-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
151+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ tests/testthat/run_pipeline_vignette_config_patches/*/*.yaml*
1515
/doc/
1616
/Meta/
1717
README.html
18+
.cache/*
19+
.local/*
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"objectDisplayType": 0
3+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"column-info": {
3+
"names": [
4+
"Source"
5+
],
6+
"activeColumn": "Source"
7+
}
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"themeInfo": {
3+
"foreground": "rgb(0, 0, 0)",
4+
"background": "rgb(255, 255, 255)"
5+
}
6+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"rightpanesize": {
3+
"panelwidth": 1424,
4+
"windowwidth": 1440,
5+
"splitterpos": [
6+
646
7+
]
8+
}
9+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"debugBreakpointsState": {
3+
"breakpoints": []
4+
}
5+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"sortOrder": [
3+
{
4+
"columnIndex": 4,
5+
"ascending": false
6+
},
7+
{
8+
"columnIndex": 2,
9+
"ascending": true
10+
}
11+
],
12+
"path": "~"
13+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"activeTab": 5
3+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"left": {
3+
"splitterpos": 280,
4+
"topwindowstate": "NORMAL",
5+
"panelheight": 651,
6+
"windowheight": 725
7+
},
8+
"right": {
9+
"splitterpos": 420,
10+
"topwindowstate": "NORMAL",
11+
"panelheight": 651,
12+
"windowheight": 725
13+
}
14+
}

0 commit comments

Comments
 (0)