This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 490902295 chore: fix nightly builds (#2305)
490902295 is described below
commit 49090229515adb02092ce2457b8f4463fba3db14
Author: David Li <[email protected]>
AuthorDate: Tue Nov 5 18:09:28 2024 -0500
chore: fix nightly builds (#2305)
---
.github/workflows/nightly-verify.yml | 3 +++
.github/workflows/verify.yml | 3 +++
c/driver/flightsql/sqlite_flightsql_test.cc | 2 +-
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/nightly-verify.yml
b/.github/workflows/nightly-verify.yml
index 2b9c3e825..ae6d7f87d 100644
--- a/.github/workflows/nightly-verify.yml
+++ b/.github/workflows/nightly-verify.yml
@@ -158,6 +158,9 @@ jobs:
VERBOSE: "1"
VERIFICATION_MOCK_DIST_DIR: ${{ github.workspace }}
run: |
+ # Rust uses a lot of disk space, free up some space
+ # https://github.com/actions/runner-images/issues/2840
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
./arrow-adbc/dev/release/verify-release-candidate.sh $VERSION 0
- name: Verify
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index cc89154bc..939456576 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -106,6 +106,9 @@ jobs:
USE_CONDA: "1"
VERBOSE: "1"
run: |
+ # Rust uses a lot of disk space, free up some space
+ # https://github.com/actions/runner-images/issues/2840
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
./dev/release/verify-release-candidate.sh ${{ inputs.version }} ${{
inputs.rc }}
- name: Verify
if: matrix.os == 'windows-latest'
diff --git a/c/driver/flightsql/sqlite_flightsql_test.cc
b/c/driver/flightsql/sqlite_flightsql_test.cc
index 40601e280..4797d58e7 100644
--- a/c/driver/flightsql/sqlite_flightsql_test.cc
+++ b/c/driver/flightsql/sqlite_flightsql_test.cc
@@ -121,7 +121,7 @@ class SqliteFlightSqlQuirks : public
adbc_validation::DriverQuirks {
bool supports_get_objects() const override { return true; }
bool supports_partitioned_data() const override { return true; }
bool supports_dynamic_parameter_binding() const override { return true; }
- std::string catalog() const { return "main"; }
+ std::string catalog() const override { return "main"; }
};
class SqliteFlightSqlTest : public ::testing::Test, public
adbc_validation::DatabaseTest {