Skip to content

Commit

Permalink
chore: fix nightly builds (#2305)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm authored Nov 5, 2024
1 parent 28b8c1b commit 4909022
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/nightly-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion c/driver/flightsql/sqlite_flightsql_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4909022

Please sign in to comment.