Skip to content

Commit 1323b5a

Browse files
committed
New data collected at 2026-01-19_00-02-00
1 parent 04669ef commit 1323b5a

32 files changed

Lines changed: 190 additions & 97 deletions

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

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,13 @@ jobs:
133133
shell: bash
134134

135135
- id: versions-matrix
136-
# Only run for pull requests if the base repo is different from the head repo, not for workflow_dispatch if not requested, always run for other events
137-
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository) && (github.event_name != 'workflow_dispatch' || inputs.versions-matrix)
136+
# Only run for:
137+
# - pull requests if the base repo is different from the head repo
138+
# - pull requests if the branch name starts with "cran-"
139+
# Do not run for:
140+
# - workflow_dispatch if not requested
141+
# Always run for other events.
142+
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository || startsWith(github.head_ref, 'cran-')) && (github.event_name != 'workflow_dispatch' || inputs.versions-matrix)
138143
uses: ./.github/workflows/versions-matrix
139144

140145
- id: dep-suggests-matrix
@@ -285,7 +290,7 @@ jobs:
285290

286291
runs-on: ${{ matrix.os }}
287292

288-
if: ${{ needs.rcc-smoke.outputs.versions-matrix != '' && (github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.run-rcc-full)) }}
293+
if: ${{ needs.rcc-smoke.outputs.versions-matrix != '' }}
289294

290295
name: 'rcc: ${{ matrix.os }} (${{ matrix.r }}) ${{ matrix.desc }}'
291296

@@ -345,7 +350,7 @@ jobs:
345350
needs:
346351
- rcc-smoke
347352

348-
runs-on: ubuntu-22.04
353+
runs-on: ubuntu-24.04
349354

350355
if: ${{ needs.rcc-smoke.outputs.dep-suggests-matrix != '' && (github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.run-rcc-suggests)) }}
351356

github-actions/ggstatsplot/pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Deploy to GitHub pages 🚀
4848
if: github.event_name != 'pull_request'
49-
uses: JamesIves/github-pages-deploy-action@v4.7.6
49+
uses: JamesIves/github-pages-deploy-action@v4.8.0
5050
with:
5151
branch: gh-pages
5252
folder: docs

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

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,13 @@ jobs:
133133
shell: bash
134134

135135
- id: versions-matrix
136-
# Only run for pull requests if the base repo is different from the head repo, not for workflow_dispatch if not requested, always run for other events
137-
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository) && (github.event_name != 'workflow_dispatch' || inputs.versions-matrix)
136+
# Only run for:
137+
# - pull requests if the base repo is different from the head repo
138+
# - pull requests if the branch name starts with "cran-"
139+
# Do not run for:
140+
# - workflow_dispatch if not requested
141+
# Always run for other events.
142+
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository || startsWith(github.head_ref, 'cran-')) && (github.event_name != 'workflow_dispatch' || inputs.versions-matrix)
138143
uses: ./.github/workflows/versions-matrix
139144

140145
- id: dep-suggests-matrix
@@ -285,7 +290,7 @@ jobs:
285290

286291
runs-on: ${{ matrix.os }}
287292

288-
if: ${{ needs.rcc-smoke.outputs.versions-matrix != '' && (github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.run-rcc-full)) }}
293+
if: ${{ needs.rcc-smoke.outputs.versions-matrix != '' }}
289294

290295
name: 'rcc: ${{ matrix.os }} (${{ matrix.r }}) ${{ matrix.desc }}'
291296

@@ -345,7 +350,7 @@ jobs:
345350
needs:
346351
- rcc-smoke
347352

348-
runs-on: ubuntu-22.04
353+
runs-on: ubuntu-24.04
349354

350355
if: ${{ needs.rcc-smoke.outputs.dep-suggests-matrix != '' && (github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.run-rcc-suggests)) }}
351356

github-actions/lintr/pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Deploy to GitHub pages 🚀
4242
if: github.event_name != 'pull_request'
43-
uses: JamesIves/github-pages-deploy-action@v4.7.6
43+
uses: JamesIves/github-pages-deploy-action@v4.8.0
4444
with:
4545
clean: false
4646
branch: gh-pages

github-actions/mlflow/autoformat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: Check diff
7676
id: diff
7777
env:
78-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
78+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7979
run: |
8080
changed_files="$(gh pr view --repo ${{ github.repository }} ${{ needs.check-comment.outputs.pull_number }} --json files --jq '.files.[].path')"
8181
protos=$([[ -z $(echo "$changed_files" | grep '^\(mlflow/protos\|tests/protos\)') ]] && echo "false" || echo "true")

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ jobs:
102102
- id: set-matrix
103103
name: Set matrix
104104
env:
105-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
105+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106106
run: |
107107
EVENT_NAME="${{ github.event_name }}"
108108
if [ "$EVENT_NAME" = "pull_request" ]; then
109109
REPO="${{ github.repository }}"
110110
PR_NUMBER="${{ github.event.pull_request.number }}"
111111
BASE_REF="${{ github.base_ref }}"
112112
REF_VERSIONS_YAML="https://raw.githubusercontent.com/$REPO/$BASE_REF/mlflow/ml-package-versions.yml"
113-
CHANGED_FILES=$(python dev/list_changed_files.py --repository $REPO --pr-num $PR_NUMBER | grep -v '^mlflow/server/js' || true)
113+
CHANGED_FILES=$(gh pr view "$PR_NUMBER" --json files --jq '.files[].path' | grep -v '^mlflow/server/js' || true)
114114
ENABLE_DEV_TESTS="${{ fromJson(steps.check-labels.outputs.result).enable_dev_tests }}"
115115
NO_DEV_FLAG=$([ "$ENABLE_DEV_TESTS" == "true" ] && echo "" || echo "--no-dev")
116116
ONLY_LATEST="${{ fromJson(steps.check-labels.outputs.result).only_latest }}"

github-actions/mlflow/examples.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,10 @@ jobs:
6464
if: github.event_name == 'pull_request'
6565
env:
6666
FORCE_RUN_EXAMPLES: ${{ contains(github.event.pull_request.labels.*.name, 'examples.yml') }}
67+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6768
run: |
68-
REPO="${{ github.repository }}"
6969
PR_NUMBER="${{ github.event.pull_request.number }}"
70-
BASE_REF="${{ github.base_ref }}"
71-
CHANGED_FILES=$(python dev/list_changed_files.py --repository $REPO --pr-num $PR_NUMBER | grep "tests/examples\|examples" || true);
70+
CHANGED_FILES=$(gh pr view "$PR_NUMBER" --json files --jq '.files[].path' | grep "tests/examples\|examples" || true);
7271
if [ "$FORCE_RUN_EXAMPLES" = "true" ]; then
7372
EXAMPLES_CHANGED="true"
7473
else
@@ -120,10 +119,11 @@ jobs:
120119
- name: Check diff
121120
id: check-diff
122121
if: github.event_name == 'pull_request'
122+
env:
123+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123124
run: |
124-
REPO="${{ github.repository }}"
125125
PR_NUMBER="${{ github.event.pull_request.number }}"
126-
CHANGED_FILES=$(python dev/list_changed_files.py --repository $REPO --pr-num $PR_NUMBER | grep "Dockerfile\|\.dockerignore" || true);
126+
CHANGED_FILES=$(gh pr view "$PR_NUMBER" --json files --jq '.files[].path' | grep "Dockerfile\|\.dockerignore" || true);
127127
DOCKER_CHANGED=$([[ ! -z "$CHANGED_FILES" ]] && echo "true" || echo "false")
128128
echo -e "CHANGED_FILES:\nCHANGED_FILES"
129129
echo "DOCKER_CHANGED: $DOCKER_CHANGED"

github-actions/mlflow/js.yml

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -35,35 +35,15 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
os: [ubuntu-latest, windows-latest]
3938
option: [--testPathPattern, --testPathIgnorePatterns]
40-
include:
41-
- os: ubuntu-latest
42-
shell: bash
43-
- os: windows-latest
44-
shell: pwsh
45-
runs-on: ${{ matrix.os }}
39+
runs-on: ubuntu-latest
4640
defaults:
4741
run:
48-
shell: ${{ matrix.shell }}
4942
working-directory: mlflow/server/js
5043
steps:
5144
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5245
- uses: ./.github/actions/setup-node
53-
- name: Disable problem matcher
54-
if: runner.os == 'Windows'
55-
run: |
56-
echo "::remove-matcher owner=eslint-compact::"
57-
echo "::remove-matcher owner=eslint-stylish::"
58-
- name: Install dependencies (windows)
59-
if: runner.os == 'Windows'
60-
run: |
61-
# On Windows, `yarn install` changes hash of @databricks/design-system in yarn.lock.
62-
# Use `--no-immutable` to allow the change.
63-
yarn install --no-immutable
64-
git diff
65-
- name: Install dependencies (non-windows)
66-
if: runner.os != 'Windows'
46+
- name: Install dependencies
6747
run: |
6848
yarn install --immutable
6949
- name: Run lint
@@ -84,9 +64,8 @@ jobs:
8464
yarn type-check
8565
- name: Run tests
8666
run: |
87-
yarn test ${{ runner.os == 'Windows' && '--testTimeout=10000' || '' }} --silent ${{ matrix.option }} src/experiment-tracking/components
67+
yarn test --silent ${{ matrix.option }} src/experiment-tracking/components
8868
- name: Run build
89-
if: runner.os == 'Linux'
9069
env:
9170
# Prevent warnings (emitted from react-pdf) from being treated as errors
9271
# https://github.com/wojtekmaj/react-pdf/issues/280

github-actions/mlflow/lint.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,32 +48,32 @@ jobs:
4848
fetch-depth: 300
4949
- uses: ./.github/actions/untracked
5050
- uses: ./.github/actions/setup-python
51-
id: setup-python
51+
- uses: ./.github/actions/setup-node
5252
- name: Add problem matchers
5353
if: matrix.os == 'ubuntu-latest'
5454
run: |
5555
echo "::add-matcher::.github/workflows/matchers/clint.json"
5656
echo "::add-matcher::.github/workflows/matchers/format.json"
5757
echo "::add-matcher::.github/workflows/matchers/ruff.json"
5858
echo "::add-matcher::.github/workflows/matchers/typos.json"
59-
- name: Install dependencies
59+
- name: Install Python dependencies
6060
run: |
61-
uv sync --locked --only-group lint --only-group test
61+
uv sync --locked --only-group lint --only-group pytest
6262
- name: Install pre-commit hooks
6363
run: |
64-
uv run --only-group lint pre-commit install --install-hooks
65-
uv run --only-group lint pre-commit run install-bin -a -v
64+
uv run --no-sync pre-commit install --install-hooks
65+
uv run --no-sync pre-commit run install-bin -a -v
6666
- name: Run pre-commit
6767
id: pre-commit
6868
env:
6969
IS_MAINTAINER: ${{ contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association )}}
7070
NO_FIX: "true"
7171
run: |
72-
uv run --only-group lint pre-commit run --all-files
72+
uv run --no-sync pre-commit run --all-files
7373
7474
- name: Test clint
7575
run: |
76-
uv run --only-group test pytest dev/clint
76+
uv run --no-sync pytest dev/clint
7777
7878
- name: Check function signatures
7979
if: matrix.os == 'ubuntu-latest'
@@ -83,7 +83,7 @@ jobs:
8383
- name: Check whitespace-only changes
8484
if: matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request'
8585
env:
86-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8787
run: |
8888
uv run --no-project dev/check_whitespace_only.py \
8989
--repo ${{ github.repository }} \

github-actions/mlflow/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ jobs:
289289
uv sync --extra genai
290290
uv pip install \
291291
-r requirements/test-requirements.txt \
292-
deepeval ragas
292+
deepeval ragas arize-phoenix-evals
293293
- uses: ./.github/actions/show-versions
294294
- uses: ./.github/actions/pipdeptree
295295
- name: Run GenAI Tests (OSS)

0 commit comments

Comments
 (0)