Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Reference the R doc in sphinx document site. #11166

Draft
wants to merge 42 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
fcafd11
Build R docs with pkgdown.
trivialfis Jan 14, 2025
bf8250b
use r image. [skip ci]
trivialfis Jan 16, 2025
2ed6ba8
disable for now
trivialfis Jan 16, 2025
97609e6
skip examples [skip ci]
trivialfis Jan 16, 2025
2bb1aea
witchcraft. [skip ci]
trivialfis Jan 16, 2025
1c41cb7
vig.
trivialfis Jan 16, 2025
74d3fcb
ref.
trivialfis Jan 16, 2025
f9a359c
ref.
trivialfis Jan 16, 2025
f283e3c
ref.
trivialfis Jan 16, 2025
a280f90
all?
trivialfis Jan 16, 2025
000472f
Revert "all?"
trivialfis Jan 16, 2025
239f7c5
note.
trivialfis Jan 16, 2025
2a59244
Different xgboost.
trivialfis Jan 16, 2025
3b22075
use commit hash.
trivialfis Jan 16, 2025
aa6fdd2
add path.
trivialfis Jan 16, 2025
5a5cf56
Note.
trivialfis Jan 16, 2025
6f91180
note.
trivialfis Jan 16, 2025
6635a1a
Install.
trivialfis Jan 17, 2025
d59cffc
Fixes.
trivialfis Jan 17, 2025
2dd5e61
release branch.
trivialfis Jan 17, 2025
4389d86
cleanup.
trivialfis Jan 17, 2025
e6b59b7
registry.
trivialfis Jan 17, 2025
77c1fd9
Try to trigger.
trivialfis Feb 6, 2025
c55fef9
Disable for now.
trivialfis Feb 6, 2025
6df263d
Fix.
trivialfis Feb 6, 2025
cfdb432
setup.
trivialfis Feb 6, 2025
383ffbf
test.
trivialfis Feb 6, 2025
9b7a3f1
auth.
trivialfis Feb 7, 2025
e484df0
Move the notes.
trivialfis Feb 7, 2025
a22faa5
ep.
trivialfis Feb 7, 2025
fa9b91e
debug.
trivialfis Feb 7, 2025
27a80ab
debug.
trivialfis Feb 7, 2025
1c8f391
debug.
trivialfis Feb 7, 2025
257ed00
debug.
trivialfis Feb 7, 2025
719f88b
debug.
trivialfis Feb 7, 2025
2b6b8ad
Print revoked token.
trivialfis Feb 7, 2025
fdadf8a
debug.
trivialfis Feb 7, 2025
00e7b47
use env.
trivialfis Feb 7, 2025
a0cac78
redact?
trivialfis Feb 7, 2025
f04f708
debug.
trivialfis Feb 7, 2025
907e28e
test another one.
trivialfis Feb 7, 2025
98c94a7
Fix.
trivialfis Feb 7, 2025
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
62 changes: 62 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: XGBoost-docs

on: [push, pull_request]

permissions:
contents: read # to fetch code (actions/checkout)

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
BRANCH_NAME: >-
${{ github.event.pull_request.number && 'PR-' }}${{ github.event.pull_request.number || github.ref_name }}


jobs:
# build-r-docs:
# name: Build docs for the R package
# runs-on:
# - runs-on=${{ github.run_id }}
# - runner=linux-amd64-cpu
# - tag=r-tests-build-docs
# steps:
# # Restart Docker daemon so that it recognizes the ephemeral disks
# - run: sudo systemctl restart docker
# - uses: actions/checkout@v4
# with:
# submodules: "true"
# - name: Log into Docker registry (AWS ECR)
# run: bash ops/pipeline/login-docker-registry.sh
# - run: bash ops/pipeline/build-r-docs.sh
# - name: Upload R doc
# run: |
# python3 ops/pipeline/manage-artifacts.py upload \
# --s3-bucket xgboost-docs \
# --prefix ${BRANCH_NAME}/${PR_COMMIT_SHA} --make-public \
# r-docs-${{ env.BRANCH_NAME }}.tar.bz2

trigger-rtd-build:
# needs: build-r-docs
name: Trigger Read The Docs build.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: 'x64'
- run: |
pip3 install requests
- name: Trigger RTD
env:
RTD_AUTH: ${{ secrets.RTD_AUTH_TOKEN }}
TEST_SEC: ${{ secrets.TEST_SECRET }}
run: |
echo "branch name: ${BRANCH_NAME}"
echo "token: ${#RTD_AUTH}"
echo "test: ${#TEST_SEC}"
python3 ops/pipeline/trigger-rtd.py
29 changes: 0 additions & 29 deletions .github/workflows/freebsd.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/i386.yml

This file was deleted.

275 changes: 0 additions & 275 deletions .github/workflows/jvm_tests.yml

This file was deleted.

Loading
Loading