Skip to content

Commit

Permalink
continue
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Oct 31, 2023
1 parent d1dd558 commit 5cac326
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
conda install -y conda-build conda-verify
git config --global user.email "[email protected]"
git config --global user.name "geisserml"
python3 -VV
python3 -m pip install -U -r req/setup.txt
- name: Build package
Expand Down Expand Up @@ -94,27 +95,27 @@ jobs:
channels: bblanchon,pypdfium2-team
channel-priority: strict

- name: Prepare
run: python3 -m pip install -U -r req/default.txt

- name: Download packages
uses: actions/download-artifact@v3
with:
name: conda_package
path: conda/transfer/

- name: Install
- name: Prepare
run: |
ls -l conda/transfer/
conda install -c bblanchon -c pypdfium2-team conda/transfer/*.tar.bz2
python3 -VV
- name: Test raw package
if: inputs.package == 'raw'
run: python3 -VV; python3 conda/raw/minitest.py
run: python3 conda/raw/minitest.py

- name: Test helpers package
if: inputs.package == 'raw'
run: python3 -VV; ./run test
run: |
python3 -m pip install -U -r req/default.txt
./run test
# publish:
# TODO

0 comments on commit 5cac326

Please sign in to comment.