-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
451f347
commit e001d31
Showing
14 changed files
with
228 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# S3 tests | ||
AWS_ACCESS_KEY_ID=minioadmin | ||
AWS_SECRET_ACCESS_KEY=minioadmin | ||
AWS_REGION=us-east-1 | ||
AWS_S3_TEST_BUCKET=testbucket | ||
MINIO_ROOT_USER=minioadmin | ||
MINIO_ROOT_PASSWORD=minioadmin | ||
|
||
# Others | ||
RUST_TEST_THREADS=1 | ||
PG_PARQUET_TEST=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
aws --endpoint-url http://localhost:9000 s3 mb s3://$AWS_S3_TEST_BUCKET |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
services: | ||
app: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
command: sleep infinity | ||
network_mode: host | ||
volumes: | ||
- ..:/workspace | ||
- ${USERPROFILE}${HOME}/.ssh:/home/rust/.ssh:ro | ||
- ${USERPROFILE}${HOME}/.ssh/known_hosts:/home/rust/.ssh/known_hosts:rw | ||
- ${USERPROFILE}${HOME}/.gitconfig:/home/rust/.gitconfig:ro | ||
- ${USERPROFILE}${HOME}/.aws:/home/rust/.aws:ro | ||
env_file: | ||
- .env | ||
cap_add: | ||
- SYS_PTRACE | ||
depends_on: | ||
- minio | ||
|
||
minio: | ||
image: minio/minio | ||
env_file: | ||
- .env | ||
network_mode: host | ||
command: server /data | ||
restart: unless-stopped | ||
healthcheck: | ||
test: ["CMD", "curl", "http://localhost:9000"] | ||
interval: 6s | ||
timeout: 2s | ||
retries: 3 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,4 @@ | |
*.lcov | ||
*.xml | ||
lcov.info | ||
.env | ||
playground.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.