Skip to content

Commit

Permalink
Remove mleap commands in .create-test-env.R (#5217)
Browse files Browse the repository at this point in the history
* Remove mleap commands in .create-test-env.R

Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>

* remove restore keys

Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>

* Remove mlflow/R/mlflow/.spark-version

Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>

* remove spark cache

Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>

* remove if

Signed-off-by: harupy <17039389+harupy@users.noreply.github.com>
  • Loading branch information
harupy committed Jan 5, 2022
1 parent d6abb30 commit 2d8cb0c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 20 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/master.yml
Expand Up @@ -84,20 +84,12 @@ jobs:
os_name=$(lsb_release -ds | sed 's/\s/-/g')
echo "::set-output name=os-name::$os_name"
- name: Cache R packages
if: runner.os != 'Windows'
uses: actions/cache@v2
with:
path: ${{ env.R_LIBS_USER }}
# We cache R dependencies based on a tuple of the current OS, the R version, and the list of
# R dependencies
key: ${{ steps.os-name.outputs.os-name }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ steps.os-name.outputs.os-name }}-${{ hashFiles('.github/R-version') }}-1-
# Cache spark archive downloaded in `mlflow/R/mlflow/.create-test-env.R`
- name: Cache spark archive
uses: actions/cache@v2
with:
path: ~/spark/spark-2.4.5-bin-hadoop2.7
key: ${{ hashFiles('mlflow/R/mlflow/.spark-version') }}
- name: Install system dependencies
run: |
sudo apt-get install -y libcurl4-openssl-dev
Expand Down
11 changes: 0 additions & 11 deletions mlflow/R/mlflow/.create-test-env.R
Expand Up @@ -13,14 +13,3 @@ reticulate::conda_install("'h5py<3.0.0'", envname = mlflow:::mlflow_conda_env_na
reticulate::conda_install(Sys.getenv("MLFLOW_HOME", "../../../../."), envname = mlflow:::mlflow_conda_env_name(), pip = TRUE)
reticulate::conda_install("xgboost", envname = mlflow:::mlflow_conda_env_name())
reticulate::conda_install(paste0("h2o==", packageVersion("h2o")), envname = mlflow:::mlflow_conda_env_name(), pip = TRUE)

# The default timeout value (60 seconds) can be insufficient for `spark_install` to complete
options(timeout=60 * 60)

spark_version_file <- "../.spark-version"
spark_version <- trimws(readChar(spark_version_file, file.info(spark_version_file)$size))

# Install MLeap runtime and required dependencies
sparklyr::spark_install(version = spark_version, verbose = TRUE)
mleap::install_maven()
mleap::install_mleap(version = "0.16.0")
1 change: 0 additions & 1 deletion mlflow/R/mlflow/.spark-version

This file was deleted.

0 comments on commit 2d8cb0c

Please sign in to comment.