Skip to content

Commit

Permalink
Fix the path to copy hive.properties from scripts (#9967)
Browse files Browse the repository at this point in the history
Summary:
hive.properties has been moved to scripts/presto/etc. We need to update the
path to copy it from.

Pull Request resolved: #9967

Reviewed By: kgpai

Differential Revision: D57894974

Pulled By: xiaoxmeng

fbshipit-source-id: fb321a78cc46567d5053acb2a6a37d017f2b5d9a
  • Loading branch information
rui-mo authored and facebook-github-bot committed May 29, 2024
1 parent 971795d commit 4d4160c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- name: "Run Aggregate Fuzzer"
run: |
cd velox
cp ./scripts/etc/hive.properties $PRESTO_HOME/etc/catalog
cp ./scripts/presto/etc/hive.properties $PRESTO_HOME/etc/catalog
ls -lR $PRESTO_HOME/etc
$PRESTO_HOME/bin/launcher run -v > /tmp/server.log 2>&1 &
# Sleep for 60 seconds to allow Presto server to start.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ jobs:
- name: "Run Aggregate Fuzzer"
run: |
cd velox
cp ./scripts/etc/hive.properties $PRESTO_HOME/etc/catalog
cp ./scripts/presto/etc/hive.properties $PRESTO_HOME/etc/catalog
ls -lR $PRESTO_HOME/etc
$PRESTO_HOME/bin/launcher run -v > /tmp/server.log 2>&1 &
# Sleep for 60 seconds to allow Presto server to start.
Expand Down Expand Up @@ -754,7 +754,7 @@ jobs:
- name: "Run Bias Aggregate Fuzzer"
run: |
cd velox
cp ./scripts/etc/hive.properties $PRESTO_HOME/etc/catalog
cp ./scripts/presto/etc/hive.properties $PRESTO_HOME/etc/catalog
ls -lR $PRESTO_HOME/etc
$PRESTO_HOME/bin/launcher run -v > /tmp/server.log 2>&1 &
# Sleep for 60 seconds to allow Presto server to start.
Expand Down Expand Up @@ -846,7 +846,7 @@ jobs:
- name: "Run Window Fuzzer"
run: |
cd velox
cp ./scripts/etc/hive.properties $PRESTO_HOME/etc/catalog
cp ./scripts/presto/etc/hive.properties $PRESTO_HOME/etc/catalog
ls -lR $PRESTO_HOME/etc
$PRESTO_HOME/bin/launcher run -v > /tmp/server.log 2>&1 &
# Sleep for 60 seconds to allow Presto server to start.
Expand Down

0 comments on commit 4d4160c

Please sign in to comment.