This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.2 by this push:
new 09f65c1e304 [SPARK-36883][INFRA] Upgrade R version to 4.1.1 in CI
images
09f65c1e304 is described below
commit 09f65c1e304ade7036322920a97edc11fad1b194
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Sep 29 11:39:01 2021 -0700
[SPARK-36883][INFRA] Upgrade R version to 4.1.1 in CI images
### What changes were proposed in this pull request?
This PR aims to upgrade GitHub Action CI image to recover CRAN installation
failure.
### Why are the changes needed?
Sometimes, GitHub Action linter job failed
- https://github.com/apache/spark/runs/3739748809
New image have R 4.1.1 and will recover the failure.
```
$ docker run -it --rm dongjoon/apache-spark-github-action-image:20210928 R
--version
R version 4.1.1 (2021-08-10) -- "Kick Things"
Copyright (C) 2021 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under the terms of the
GNU General Public License versions 2 or 3.
For more information about these matters see
https://www.gnu.org/licenses/.
```
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass `GitHub Action`.
Closes #34138 from dongjoon-hyun/SPARK-36883.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit aa9064ad96ff7cefaa4381e912608b0b0d39a09c)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 45d688ea98e..4d8e6db73e0 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -168,7 +168,7 @@ jobs:
name: "Build modules: ${{ matrix.modules }}"
runs-on: ubuntu-20.04
container:
- image: dongjoon/apache-spark-github-action-image:20210730
+ image: dongjoon/apache-spark-github-action-image:20210930
strategy:
fail-fast: false
matrix:
@@ -265,7 +265,7 @@ jobs:
name: "Build modules: sparkr"
runs-on: ubuntu-20.04
container:
- image: dongjoon/apache-spark-github-action-image:20210602
+ image: dongjoon/apache-spark-github-action-image:20210930
env:
HADOOP_PROFILE: hadoop3.2
HIVE_PROFILE: hive2.3
@@ -328,8 +328,9 @@ jobs:
LC_ALL: C.UTF-8
LANG: C.UTF-8
PYSPARK_DRIVER_PYTHON: python3.9
+ PYSPARK_PYTHON: python3.9
container:
- image: dongjoon/apache-spark-github-action-image:20210602
+ image: dongjoon/apache-spark-github-action-image:20210930
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]