From 97ca4664b0bc7e515ff95cc94cd10946f15519eb Mon Sep 17 00:00:00 2001 From: David Li Date: Tue, 5 Nov 2024 01:16:43 -0500 Subject: [PATCH] chore: fix nightly builds --- .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 2b9c3e8257..ae6d7f87da 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 cc89154bc4..9394565761 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 40601e2803..4797d58e77 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 {