Skip to content

Commit 0c29b55

Browse files
committed
New data collected at 2025-06-02_00-03-33
1 parent 7d30538 commit 0c29b55

24 files changed

Lines changed: 120 additions & 77 deletions

github-actions/data.table/performance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2121
repo_token: ${{ secrets.GITHUB_TOKEN }}
2222
steps:
23-
- uses: Anirban166/Autocomment-atime-results@v1.4.1
23+
- uses: Anirban166/Autocomment-atime-results@v1.4.3

github-actions/future/R-CMD-check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
- {os: ubuntu-latest, r: 'release' , language: ko, label: ko }
3939
- {os: ubuntu-latest, r: 'release' , language: zh_CN, label: zh_CN }
4040
- {os: ubuntu-latest, r: 'release' , language: zh_TW, label: zh_TW }
41-
- {os: ubuntu-latest, r: 'release' , globals_keepWhere: true, label: 'keepWhere' }
4241
- {os: ubuntu-latest, r: 'release' , globals_keepWhere: false, label: '!keepWhere' }
4342
- {os: ubuntu-latest, r: 'release' , plan: multicore, fork_multithreading_enable: false, label: 'multicore, no-multithreading-in-forks' }
4443
- {os: ubuntu-latest, r: 'release' , plan: multisession, fork_multithreading_enable: false, label: 'multisession, no-multithreading-in-forks' }

github-actions/future/revdepcheck-top.yaml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,21 @@ jobs:
2121
- { r: "release", pkg: "future.mirai" }
2222
- { r: "release", pkg: "doFuture" }
2323
- { r: "release", pkg: "future.apply" }
24-
- { r: "release", pkg: "furrr" }
24+
- { r: "release", pkg: "furrr", not_cran: false }
2525
- { r: "release", pkg: "future.tests" }
26+
- { r: "release", pkg: "promises" }
27+
- { r: "release", pkg: "shiny", not_cran: false }
28+
- { r: "release", pkg: "plumber" }
2629
- { r: "release", pkg: "future.batchtools" , globals: develop, label: 'globals develop' }
2730
- { r: "release", pkg: "future.callr" , globals: develop, label: 'globals develop' }
2831
- { r: "release", pkg: "future.mirai" , globals: develop, label: 'globals develop' }
2932
- { r: "release", pkg: "doFuture" , globals: develop, label: 'globals develop' }
3033
- { r: "release", pkg: "future.apply" , globals: develop, label: 'globals develop' }
31-
- { r: "release", pkg: "furrr" , globals: develop, label: 'globals develop' }
34+
- { r: "release", pkg: "furrr", not_cran: false, globals: develop, label: 'globals develop' }
3235
- { r: "release", pkg: "future.tests" , globals: develop, label: 'globals develop' }
3336
- { r: "release", pkg: "doFuture" , plan: multisession, label: multisession }
3437
- { r: "release", pkg: "future.apply" , plan: multisession, label: multisession }
35-
- { r: "release", pkg: "furrr" , plan: multisession, label: multisession }
36-
- { r: "release", pkg: "future.apply" , globals_keepWhere: true, label: 'keepWhere' }
38+
- { r: "release", pkg: "furrr", not_cran: false, plan: multisession, label: multisession }
3739
- { r: "release", pkg: "future.apply" , globals_keepWhere: false, label: '!keepWhere' }
3840

3941
env:
@@ -47,8 +49,7 @@ jobs:
4749
R_FUTURE_PLAN: ${{ matrix.config.plan }}
4850
R_FUTURE_GLOBALS_KEEPWHERE: ${{ matrix.config.globals_keepWhere }}
4951
R_GLOBALS_BRANCH: ${{ matrix.config.globals }}
50-
## Specific to furrr (to disable expect_snapshot() tests)
51-
NOT_CRAN: false
52+
NOT_CRAN: true
5253

5354
steps:
5455
- uses: actions/checkout@v4
@@ -91,6 +92,10 @@ jobs:
9192
run: |
9293
url=$(Rscript -e "cat(remotes:::download_version_url('${{ matrix.config.pkg }}', version=NULL, repos='https://cloud.r-project.org', type='source'))")
9394
wget "$url"
95+
if [[ "${{ matrix.config.not_cran }}" == "false" ]]; then
96+
export NOT_CRAN=false
97+
fi
98+
echo "NOT_CRAN=${NOT_CRAN:-<not set>}"
9499
R CMD check --no-manual --as-cran "$(basename "$url")"
95100
96101
- name: Upload check results

github-actions/mlflow/autoformat.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,11 @@ jobs:
9292
# ************************************************************************
9393
- run: |
9494
dev/install-taplo.sh
95+
dev/install-typos.sh
96+
dev/install-conftest.sh
9597
- run: |
9698
pip install -r requirements/lint-requirements.txt
97-
pre-commit install
99+
pre-commit install --install-hooks
98100
pre-commit run --all-files --color=always || true
99101
# ************************************************************************
100102
# protos
@@ -140,7 +142,7 @@ jobs:
140142
# R
141143
# ************************************************************************
142144
- if: steps.diff.outputs.r == 'true'
143-
working-directory: docs
145+
working-directory: docs/api_reference
144146
run: |
145147
./build-rdoc.sh
146148
# ************************************************************************
@@ -149,6 +151,7 @@ jobs:
149151
- name: Create patch
150152
id: patch
151153
run: |
154+
git add -N .
152155
git diff > ${{ github.run_id }}.diff
153156
reformatted=$([[ -s ${{ github.run_id }}.diff ]] && echo "true" || echo "false")
154157
echo "reformatted=$reformatted" >> $GITHUB_OUTPUT
@@ -211,7 +214,8 @@ jobs:
211214
REPOSITORY: ${{ github.repository }}
212215
run: |
213216
git apply /tmp/${RUN_ID}.diff
214-
git commit -sam "Autoformat: https://github.com/${REPOSITORY}/actions/runs/${RUN_ID}"
217+
git add .
218+
git commit -sm "Autoformat: https://github.com/${REPOSITORY}/actions/runs/${RUN_ID}"
215219
echo "head_sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
216220
git push
217221

github-actions/mlflow/build-wheel.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4343
with:
4444
ref: ${{ github.event.inputs.ref }}
45-
submodules: recursive
4645
- uses: ./.github/actions/untracked
4746
- uses: ./.github/actions/setup-python
4847
- uses: ./.github/actions/setup-node
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: copilot-setup-steps
2+
3+
on: workflow_dispatch
4+
5+
jobs:
6+
copilot-setup-steps:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
steps:
11+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12+
- uses: ./.github/actions/setup-node
13+
- uses: ./.github/actions/setup-python
14+
- name: pre-commit setup
15+
run: |
16+
uv pip install --system -r requirements/lint-requirements.txt
17+
dev/install-taplo.sh
18+
dev/install-typos.sh
19+
dev/install-conftest.sh
20+
pre-commit install --install-hooks

github-actions/mlflow/cross-version-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
steps:
6868
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6969
with:
70-
submodules: recursive
7170
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
7271
ref: ${{ github.event.inputs.ref }}
7372
- uses: ./.github/actions/untracked
@@ -136,7 +135,6 @@ jobs:
136135
steps:
137136
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
138137
with:
139-
submodules: recursive
140138
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
141139
ref: ${{ github.event.inputs.ref }}
142140
- uses: ./.github/actions/free-disk-space
@@ -184,7 +182,6 @@ jobs:
184182
steps:
185183
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
186184
with:
187-
submodules: recursive
188185
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
189186
ref: ${{ github.event.inputs.ref }}
190187
- uses: ./.github/actions/free-disk-space

github-actions/mlflow/dev-setup.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4949
- uses: ./.github/actions/free-disk-space
5050
with:
51-
submodules: recursive
5251
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
5352
ref: ${{ github.event.inputs.ref }}
5453
- name: Setup environment

github-actions/mlflow/examples.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ jobs:
5757
with:
5858
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
5959
ref: ${{ github.event.inputs.ref }}
60-
submodules: recursive
6160
- uses: ./.github/actions/free-disk-space
6261
- name: Check diff
6362
id: check-diff
@@ -108,8 +107,6 @@ jobs:
108107
with:
109108
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
110109
ref: ${{ github.event.inputs.ref }}
111-
submodules: recursive
112-
113110
- name: Check diff
114111
id: check-diff
115112
if: github.event_name == 'pull_request'

github-actions/mlflow/js.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ jobs:
4545
working-directory: mlflow/server/js
4646
steps:
4747
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48-
with:
49-
submodules: recursive
5048
- uses: ./.github/actions/setup-node
5149
- name: Disable problem matcher
5250
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)