Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add S3 upload #1299

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/end-to-end.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
branches: [ main ]
branches: [main]
paths:
- "src/**"
- "Cargo.*"
Expand Down Expand Up @@ -29,7 +29,7 @@ jobs:
run_tests:
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
fail-fast: false

name: Run tests
Expand All @@ -45,7 +45,10 @@ jobs:
# build in release mode so that it's reasonably fast to run the tests
- run: pixi run build-release
- run: pixi run test-ci
- run: pixi run test-end-to-end -s -v
- run: |
mkdir -p ${{ runner.temp }}/minio-data
pixi run minio server --address 127.0.0.1:9000 ${{ runner.temp }}/minio-data &
pixi run test-end-to-end -s -v
env:
PREFIX_DEV_READ_ONLY_TOKEN: ${{ secrets.PREFIX_DEV_READ_ONLY_TOKEN }}
ANACONDA_ORG_TEST_TOKEN: ${{ secrets.ANACONDA_ORG_TEST_TOKEN }}
Loading
Loading