Skip to content

Commit

Permalink
New data collected at 2024-09-23_00-02-15
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 23, 2024
1 parent 5a3d3a2 commit 60ebfe7
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 14 deletions.
53 changes: 53 additions & 0 deletions github-actions/cli/rhel.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
on:
workflow_dispatch:

name: rhel.yaml

permissions: read-all

jobs:
rhel:
runs-on: ubuntu-latest
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
# cannot run the nodejs actions because RHEL7 cannot run node20
# - { os: rhel7, r: release, key: REDHAT_ACTIVATION_KEY_RHEL7 }
- { os: rhel8, r: release, key: REDHAT_ACTIVATION_KEY_RHEL8 }
- { os: rhel9, r: release, key: REDHAT_ACTIVATION_KEY_RHEL9 }
container:
image: ghcr.io/r-hub/containers/${{ matrix.config.os }}:latest

steps:
- uses: actions/checkout@v4

- name: Register
run: |
subscription-manager register \
--org ${{ secrets.REDHAT_ORG }} \
--activationkey ${{ secrets[matrix.config.key] }}
shell: bash

- name: Install R
if: ${{ matrix.config.r != 'release' }}
run: |
rig add ${{ matrix.config.r }}
shell: bash

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
env:
NOT_CRAN: true

- name: Unregister
if: always()
run: |
subscription-manager unregister || true
2 changes: 0 additions & 2 deletions github-actions/knitr/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ jobs:
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-tinytex@v2-branch
env:
# install full prebuilt version
Expand Down
2 changes: 1 addition & 1 deletion github-actions/knitr/knitr-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
make integration
shell: bash

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: knitr-examples
Expand Down
1 change: 1 addition & 0 deletions github-actions/mlflow/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || steps.check-diff.outputs.examples_changed == 'true' }}
run: |
source ./dev/install-common-deps.sh --ml
pip install fastapi uvicorn
- name: Run example tests
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || steps.check-diff.outputs.examples_changed == 'true' }}
Expand Down
6 changes: 3 additions & 3 deletions github-actions/mlflow/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
- name: Install dependencies
run: |
source ./dev/install-common-deps.sh
pip install pyspark langchain langchain-community
pip install pyspark langchain langchain-community '.[mlserver]'
- uses: ./.github/actions/show-versions
- uses: ./.github/actions/pipdeptree
- name: Run tests
Expand All @@ -245,7 +245,7 @@ jobs:
- name: Install dependencies
run: |
source ./dev/install-common-deps.sh
pip install pyspark torch transformers langchain langchain-experimental
pip install pyspark torch transformers langchain langchain-experimental '.[genai]'
- uses: ./.github/actions/show-versions
- uses: ./.github/actions/pipdeptree
- name: Run tests
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
source .venv/Scripts/activate
python -m pip install -U pip
pip install --no-dependencies tests/resources/mlflow-test-plugin
pip install .[extras]
pip install '.[extras,genai]'
pip install pyspark
pip install mleap
# Install Hugging Face datasets to test Hugging Face usage with MLflow dataset tracking
Expand Down
6 changes: 5 additions & 1 deletion github-actions/tabulizer/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
push:
branches:
- main
pull_request:
branches:
- main

name: R-CMD-check

Expand Down
1 change: 1 addition & 0 deletions gitignore/xgboost.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ipch
*.filters
*.user
*log
rmm_log.txt
Debug
*suo
.Rhistory
Expand Down
6 changes: 0 additions & 6 deletions make/knitr-Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@ examples:
cd inst/examples;\
Rscript knit-all.R

vignettes:
cd vignettes;\
lyx -e knitr knitr-refcard.lyx;\
sed -i '/\\usepackage{breakurl}/ d' knitr-refcard.Rnw;\
mv knitr-refcard.Rnw assets/template-refcard.tex

clean:
cd ..;\
$(RM) -r $(PKGNAME).Rcheck/
Expand Down
1 change: 0 additions & 1 deletion rbuildignore/knitr.Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ Makefile
^codecov\.yml$
^NEWS\.md$
^cran-comments\.md$
vignettes/knitr-refcard.lyx

0 comments on commit 60ebfe7

Please sign in to comment.