From adcc79eaf6a3b136f7d79576bc7b7d904c028b9c Mon Sep 17 00:00:00 2001 From: Mark Dokter Date: Mon, 17 Jan 2022 13:33:34 +0100 Subject: [PATCH 1/2] [MINOR] Ignore failing/obsolete gpu codegen test testCodegenRowAggRewrite18CP --- .../java/org/apache/sysds/test/gpu/codegen/RowAggTmplTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/java/org/apache/sysds/test/gpu/codegen/RowAggTmplTest.java b/src/test/java/org/apache/sysds/test/gpu/codegen/RowAggTmplTest.java index f44d9caebe5..7843aaea9ec 100644 --- a/src/test/java/org/apache/sysds/test/gpu/codegen/RowAggTmplTest.java +++ b/src/test/java/org/apache/sysds/test/gpu/codegen/RowAggTmplTest.java @@ -20,6 +20,7 @@ package org.apache.sysds.test.gpu.codegen; import org.apache.sysds.test.AutomatedTestBase; +import org.junit.Ignore; import org.junit.Test; public class RowAggTmplTest extends AutomatedTestBase { @@ -96,6 +97,7 @@ public class RowAggTmplTest extends AutomatedTestBase { @Test public void testCodegenRowAggRewrite15CP() { dmlTestCase.testCodegenRowAggRewrite15CP(); } @Test public void testCodegenRowAggRewrite16CP() { dmlTestCase.testCodegenRowAggRewrite16CP(); } @Test public void testCodegenRowAggRewrite17CP() { dmlTestCase.testCodegenRowAggRewrite17CP(); } + @Ignore // also ignored in java version (see explanation there) @Test public void testCodegenRowAggRewrite18CP() { dmlTestCase.testCodegenRowAggRewrite18CP(); } @Test public void testCodegenRowAggRewrite19CP() { dmlTestCase.testCodegenRowAggRewrite19CP(); } @Test public void testCodegenRowAggRewrite20CP() { dmlTestCase.testCodegenRowAggRewrite20CP(); } From 94ae135db485bbc9045f8149c7b8d6e664ba70d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 17:24:12 +0000 Subject: [PATCH 2/2] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/applicationTests.yml | 2 +- .github/workflows/documentation.yml | 2 +- .github/workflows/functionsTests.yml | 2 +- .github/workflows/python.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/applicationTests.yml b/.github/workflows/applicationTests.yml index dbfeb4af28b..6beaa5aaba0 100644 --- a/.github/workflows/applicationTests.yml +++ b/.github/workflows/applicationTests.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v3 - name: Cache Maven Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-test-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 106b16fa0e6..4a583240d00 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -73,7 +73,7 @@ jobs: architecture: 'x64' - name: Cache Pip Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-docs-${{ hashFiles('src/main/python/docs/requires-docs.txt') }} diff --git a/.github/workflows/functionsTests.yml b/.github/workflows/functionsTests.yml index a4a6cfc02e3..ac4eac5cd7e 100644 --- a/.github/workflows/functionsTests.yml +++ b/.github/workflows/functionsTests.yml @@ -74,7 +74,7 @@ jobs: uses: actions/checkout@v3 - name: Cache Maven Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-test-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 4efa1e400a7..798e5ed8f05 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -66,13 +66,13 @@ jobs: cache: 'maven' - name: Cache Pip Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('src/main/python/setup.py') }} - name: Cache Datasets - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | src/main/python/systemds/examples/tutorials/mnist @@ -80,7 +80,7 @@ jobs: key: ${{ runner.os }}-mnist-${{ hashFiles('src/main/python/systemds/examples/tutorials/mnist.py') }}-${{ hashFiles('src/main/python/systemds/examples/tutorials/adult.py') }} - name: Cache Deb Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /var/cache/apt/archives key: ${{ runner.os }}-${{ hashFiles('.github/workflows/python.yml') }}