-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy path.env
More file actions
71 lines (64 loc) · 2.64 KB
/
.env
File metadata and controls
71 lines (64 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# All of the following environment variables are required to set default values
# for the parameters in compose.yaml.
# Default repository to pull and push images from
REPO=apache/arrow-dev
# different architecture notations
ARCH=amd64
ARCH_ALIAS=x86_64
ARCH_SHORT=amd64
ARCH_CONDA_FORGE=linux_64_
# Default versions for various dependencies
JDK=21
MANYLINUX=2014
MAVEN=3.9.10
PLATFORM=linux/amd64
PYTHON=3.13
GO=1.26.0
ARROW_MAJOR_VERSION=18
DOTNET=8.0
# Used through compose.yaml and serves as the default version for the
# ci/scripts/install_vcpkg.sh script. Keep in sync with apache/arrow .env.
# When updating, also update the docs, which list the version of libpq/SQLite
# that vcpkg (and hence our wheels) ship
VCPKG="4334d8b4c8916018600212ab4dd4bbdc343065d1" # 2025.09.17 Release
# These are used to tell tests where to find services for integration testing.
# They are valid if the services are started with the compose config.
ADBC_DREMIO_FLIGHTSQL_PASS=dremio123
ADBC_DREMIO_FLIGHTSQL_URI=grpc+tcp://localhost:32010
ADBC_DREMIO_FLIGHTSQL_USER=dremio
ADBC_JDBC_MSSQL_URL=localhost:1433
ADBC_JDBC_MSSQL_USER=SA
ADBC_JDBC_MSSQL_PASSWORD=Password1!
ADBC_JDBC_POSTGRESQL_URL=localhost:5432/postgres
ADBC_JDBC_POSTGRESQL_USER=postgres
ADBC_JDBC_POSTGRESQL_PASSWORD=password
ADBC_JDBC_POSTGRESQL_DATABASE=postgres
ADBC_POSTGRESQL_TEST_URI="postgresql://localhost:5432/postgres?user=postgres&password=password"
ADBC_SQLITE_FLIGHTSQL_URI=grpc+tcp://localhost:8080
ADBC_TEST_FLIGHTSQL_URI=grpc+tls://localhost:41414
ADBC_GIZMOSQL_URI=grpc+tcp://localhost:31337
ADBC_GIZMOSQL_USER=adbc_test_user
ADBC_GIZMOSQL_PASSWORD=adbc_test_password
# OAuth test server configuration
# OAuth token endpoint (oauthserver on port 8181)
ADBC_OAUTH_TOKEN_URI=http://localhost:8181/token
ADBC_OAUTH_CLIENT_ID=test-client
ADBC_OAUTH_CLIENT_SECRET=test-secret
ADBC_OAUTH_SUBJECT_TOKEN=test-subject-token
ADBC_OAUTH_SKIP_VERIFY=true