Skip to content

Commit

Permalink
continue
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Oct 30, 2023
1 parent 66b465b commit c24a84b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ""
python-version: ${{ inputs.py_version }}

- name: Prepare
Expand All @@ -50,9 +52,9 @@ jobs:
conda config --prepend channels bblanchon
conda config --prepend channels pypdfium2-team
conda config --set channel_priority strict
python3 -m pip install -U -r req/setup.txt
git config --global user.email "[email protected]"
git config --global user.name "geisserml"
python3 -m pip install -U -r req/setup.txt
- name: Build package
run: ./run craft conda_${{ inputs.package }}
Expand Down Expand Up @@ -87,14 +89,16 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ""
python-version: ${{ matrix.py }}

- name: Prepare
run: |
conda config --prepend channels bblanchon
conda config --prepend channels pypdfium2-team
conda config --set channel_priority strict
python -m pip install -U -r req/default.txt
python3 -m pip install -U -r req/default.txt
- name: Download packages
uses: actions/download-artifact@v3
Expand All @@ -109,13 +113,11 @@ jobs:
- name: Test raw package
if: inputs.package == 'raw'
run: |
python -VV
python conda/raw/minitest.py
run: python3 -VV; python3 conda/raw/minitest.py

- name: Test helpers package
if: inputs.package == 'raw'
run: ./run test
run: python3 -VV; ./run test

# publish:
# TODO

0 comments on commit c24a84b

Please sign in to comment.