From 9af1de6f374d2e7f9c58b0a2ca10bbcad2e36cfd Mon Sep 17 00:00:00 2001 From: PHILO-HE Date: Sun, 9 Jun 2024 18:55:30 +0800 Subject: [PATCH] Fix permission --- .github/workflows/velox_docker.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/velox_docker.yml b/.github/workflows/velox_docker.yml index 0709baf183059..3e6b0d325ad93 100644 --- a/.github/workflows/velox_docker.yml +++ b/.github/workflows/velox_docker.yml @@ -640,6 +640,12 @@ jobs: run: | cd $GITHUB_WORKSPACE/cpp/build && \ ctest -V + - name: Gluten CPP Benchmark Test + run: | + # This test depends on example.json generated by the above mvn test. + cd $GITHUB_WORKSPACE/cpp/build/velox/benchmarks && \ + sudo chmod +x ./generic_benchmark && \ + ./generic_benchmark --run-example --with-shuffle --threads 1 --iterations 1 - name: Prepare spark.test.home for Spark 3.2.2 (other tests) run: | cd $GITHUB_WORKSPACE/ && \ @@ -670,11 +676,6 @@ jobs: with: name: golden-files-spark32 path: /tmp/tpch-approved-plan/** - - name: Gluten CPP Benchmark Test - run: | - # This test depends on example.json generated by the above mvn test. - cd $GITHUB_WORKSPACE/cpp/build/velox/benchmarks && \ - ./generic_benchmark --run-example --with-shuffle --threads 1 --iterations 1 run-spark-test-spark32-slow: needs: build-native-lib-centos-8