Skip to content

Conda Test

Conda Test #12

Workflow file for this run

name: Conda Test
on:
workflow_dispatch
jobs:
build_wheels:
name: py${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
# os: [ ubuntu-latest, windows-latest ]
os: [ ubuntu-latest ]
python: [ '3.7', '3.8', '3.9', '3.10' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup miniconda3
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
auto-update-conda: true
# channel-priority: strict
# mamba-version: "*"
python-version: ${{ matrix.python }}
activate-environment: test
channels: conda-forge, mesonomics
- name: configure recipe conda environment
run: |
conda create -n recipe python=${{ matrix.python }}
conda install -y -n recipe boa conda-build
- name: conda info
run: |
conda info
conda list
- name: conda build for ${{ matrix.os }}
run: |
conda activate recipe
conda build --output-folder . -c conda-forge -c mesonomics --python ${{ matrix.python }} conda/zipline-tardis-bundle
- name: create local channel
run: |
mkdir -p /tmp/channel/linux-64
cp linux-64/zipline-tardis-bundle*.tar.bz2 /tmp/channel/linux-64
- name: install zipline-tardis-bundle into test environment
run: |
conda index /tmp/channel
conda activate test
conda install -y --override-channels -c file:///tmp/channel -c mesonomics -c conda-forge zipline-tardis-bundle