Skip to content

Commit

Permalink
create separate jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
phelps-sg committed Aug 22, 2023
1 parent 1cb328c commit c8c9fb0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/conda_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,22 @@ jobs:
activate-environment: test
channels: conda-forge, mesonomics

- name: conda build for ${{ matrix.os }}
- name: configure recipe conda environment
run: |
conda create -n recipe python=${{ matrix.python }}
conda install -y -n recipe boa
- name: conda build for ${{ matrix.os }}
run: |
conda activate recipe
conda mambabuild --output-folder . --python ${{ matrix.python }} conda/zipline-tardis-bundle
- name: create local channel
run: |
mkdir -p /tmp/channel/linux64
cp linux64/zipline-tardis-bundle*.tar.bz2 /tmp/channel
- name: install zipline-tardis-bundle into test environment
conda index /tmp/channel
conda activate test
conda install -y --override-channels -c file:///tmp/channel -c mesonomics -c conda-forge zipline-tardis-bundle

0 comments on commit c8c9fb0

Please sign in to comment.