S3/Remote Reductionist #466
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
# adapted GA workflow from https://github.com/stackhpc/reductionist-rs | |
# This runs Active with a remote Reductionist and S3 data stored elsewhere | |
--- | |
name: S3/Remote Reductionist | |
on: | |
push: | |
branches: | |
- main # keep this at all times | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' # nightly | |
# Required shell entrypoint to have properly configured bash shell | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
linux-test: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12", "3.13"] | |
fail-fast: false | |
name: Linux Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
miniforge-version: "latest" | |
use-mamba: true | |
- name: Get conda and Python versions | |
run: | | |
conda --version | |
python -V | |
- name: Export proxy | |
run: | | |
echo 'USE_S3 = True' >> activestorage/config.py | |
echo 'REMOTE_RED = True' >> activestorage/config.py | |
- name: Ping remote Reductionist | |
run: curl -k https://192.171.169.248:8080/.well-known/reductionist-schema | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: activestorage-minio | |
environment-file: environment.yml | |
python-version: ${{ matrix.python-version }} | |
miniforge-version: "latest" | |
use-mamba: true | |
- name: Install PyActiveStorage | |
run: | | |
conda --version | |
python -V | |
which python | |
pip install -e . | |
- name: Run one single test | |
run: | | |
pytest tests/test_compression_remote_reductionist.py | |
- name: Upload HTML report artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: html-report | |
path: test-reports/ | |
if: always() |