Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
89da9f1
523-cran-errors (#524)
gravesti Sep 22, 2025
7ddf21e
525 prepare release 1.5.0 (#526)
gravesti Sep 24, 2025
4fdcc14
527-faster-tests (#528)
gravesti Oct 8, 2025
85898b7
Release 1.5.1 (#530)
gowerc Oct 9, 2025
c872d4a
Release v1.5.2 (#533)
gowerc Oct 28, 2025
9bf273a
Stop rbmi writing to cache directory on CRAN (#535)
gravesti Dec 5, 2025
5b605a2
Migrat to openpharma (#542)
gravesti Jan 20, 2026
cc8b30e
Release V1.6.0 (#540)
gowerc Jan 23, 2026
56a4700
Fix Lukas name (#545)
luwidmer Jan 23, 2026
5961fa0
544: Add spell check (#551)
luwidmer Mar 5, 2026
354fb30
Upgrade Marcel Wolbers to author (#555)
luwidmer Mar 10, 2026
0f999e8
Issue 557: CICD must fail on error (#558)
luwidmer Mar 17, 2026
895e552
Fix naming of RDO vignette (#556)
luwidmer Mar 20, 2026
2170969
Merge in current version of rbmi main
Jul 15, 2026
954aa50
Prototype multi-arm ANCOVA
Jul 15, 2026
84bf8e5
Recompile vignettes
Jul 15, 2026
09bee4f
Fix CRAN Note regarding use of deprecated .Dim argument in structure(…
luwidmer Jul 16, 2026
52f6070
Add missing documentation for return values of exported functions (#568)
luwidmer Jul 16, 2026
10bb622
Add missing example code for exported functions (#571)
luwidmer Jul 16, 2026
ff3b419
Fix multiple reporting of multiple Stan warnings (#573)
luwidmer Jul 16, 2026
a77d88c
Update Marcel Wolbers' email (#585)
luwidmer Jul 16, 2026
10f97dc
Fix simulate_test_data error message for mu$visit (#579)
luwidmer Jul 16, 2026
9651380
Fix misleading error messages for imputation_list_single() (#575)
luwidmer Jul 16, 2026
1464e34
Fix apply_delta error message typo (#577)
luwidmer Jul 16, 2026
cb82c72
rbmi 1.6.1 (#586)
luwidmer Jul 22, 2026
ad12057
Increment version number to 1.6.1.9000
Jul 23, 2026
4ac89e1
Merge in 1.6.1
Jul 23, 2026
7e3d96b
Air format project
Jul 23, 2026
2e023d9
Add examples and robustify ancova_linear_contrast
Jul 31, 2026
66d8fed
Robustify frm_find_and_replace
Jul 31, 2026
b14028a
Robustify as_data_frame_internal
Jul 31, 2026
0bc49e5
Test robustification of as.data.frame.pool
Jul 31, 2026
c96014b
Document contrasts
Jul 31, 2026
9492391
Recompile docs
Jul 31, 2026
a78aacb
Allow for named contrasts
Jul 31, 2026
b1a4165
Update outdated docs and reformat with air
Jul 31, 2026
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
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@

^CONTRIBUTING.md$
^local$
^revdep$
38 changes: 0 additions & 38 deletions .github/actions/build-src/action.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/actions/rcmdcheck/action.yml

This file was deleted.

68 changes: 39 additions & 29 deletions .github/workflows/build_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@ on:
schedule:
- cron: '0 5 1 * *'
workflow_dispatch:
inputs:
tag:
description: 'Docker image tag'
required: true
type: string
push:
tags-ignore:
- '**'
branches:
- main
paths:
- 'misc/docker/**'
- 'misc/docker/*'
Expand All @@ -26,44 +35,45 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
id: buildx
with:
install: true

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}


- name: Determine image tag
id: vars
run: |
BRANCH_NAME=${GITHUB_REF#refs/heads/}
if [ "$BRANCH_NAME" = "main" ]; then
TAG="latest"

if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
TAG="${{ github.event.inputs.tag }}"
elif [ "$BRANCH_NAME" = "main" ]; then
TAG="latest"
else
TAG="${BRANCH_NAME}"
TAG="unknown"
fi
echo "tag=rbmi:${TAG}" >> $GITHUB_OUTPUT

- name: debug
run: |
echo push = ${{ github.event_name == 'push' }}
echo tag = ${{ env.REGISTRY }}/${{ github.repository_owner }}:${{ steps.vars.outputs.tag }}


echo "tag=${TAG}" >> $GITHUB_OUTPUT

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}


- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
id: buildx
with:
install: true

- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
file: ./misc/docker/Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}:${{ steps.vars.outputs.tag }}
push: true
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/rbmi:${{ steps.vars.outputs.tag }}
build-args: |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository_owner }}:latest
cache-to: type=inline
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository_owner }}
cache-to: type=inline
18 changes: 0 additions & 18 deletions .github/workflows/cla.yaml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/on-cron-biweekly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@


on:
schedule:
- cron: '0 4 1,15 * *'
workflow_dispatch:

name: cron Bi-Weekly

jobs:

extended:
runs-on: ubuntu-latest
container:
image: "ghcr.io/${{ github.repository_owner }}/rbmi:latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: tests/scripts/extended.sh

cran:
runs-on: ubuntu-latest
container:
image: "ghcr.io/${{ github.repository_owner }}/rbmi:latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: ./tests/scripts/cran.sh
52 changes: 52 additions & 0 deletions .github/workflows/on-pr-main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@


on:
pull_request:
paths-ignore:
- 'misc/**'
branches:
- main

name: On Pull Request

jobs:

core:
runs-on: ubuntu-latest
container:
image: "ghcr.io/${{ github.repository_owner }}/rbmi:latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: tests/scripts/core.sh

cran:
runs-on: ubuntu-latest
container:
image: "ghcr.io/${{ github.repository_owner }}/rbmi:latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: ./tests/scripts/cran.sh

vignettes:
runs-on: ubuntu-latest
container:
image: "ghcr.io/${{ github.repository_owner }}/rbmi:latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Vignettes
run: ./tests/scripts/vignettes.sh

documentation:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository_owner }}/rbmi:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: ./tests/scripts/documentation.sh
21 changes: 21 additions & 0 deletions .github/workflows/on-push-main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@


on:
push:
branches:
- main
paths-ignore:
- 'misc/**'

name: On Push

jobs:
cran:
runs-on: ubuntu-latest
container:
image: "ghcr.io/${{ github.repository_owner }}/rbmi:latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: ./tests/scripts/cran.sh
35 changes: 0 additions & 35 deletions .github/workflows/on_biweekly.yaml

This file was deleted.

57 changes: 0 additions & 57 deletions .github/workflows/on_pr_main.yaml

This file was deleted.

Loading