forked from apache/datafusion-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It is being sunsetted and will stop working entirely in Jan 2025. Ref: https://conda-forge.org/news/2024/07/29/sunsetting-mambaforge/
- Loading branch information
1 parent
c49ca9a
commit f270ee5
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,17 +70,16 @@ jobs: | |
- name: Set up Python | ||
uses: conda-incubator/[email protected] | ||
with: | ||
miniforge-variant: Mambaforge | ||
use-mamba: true | ||
miniforge-variant: Miniforge3 | ||
python-version: "3.8" | ||
channel-priority: strict | ||
- name: Install dependencies | ||
run: | | ||
mamba install -c conda-forge boa conda-verify | ||
conda install -c conda-forge conda-verify | ||
which python | ||
pip list | ||
mamba list | ||
conda list | ||
# Clean the conda cache | ||
- name: Clean Conda Cache | ||
run: conda clean --all --yes | ||
|
@@ -89,7 +88,7 @@ jobs: | |
# suffix for nightly package versions | ||
export VERSION_SUFFIX=a`date +%y%m%d` | ||
conda mambabuild conda/recipes \ | ||
conda build conda/recipes \ | ||
--python ${{ matrix.python }} \ | ||
--variants "{target_platform: [${{ matrix.arch }}]}" \ | ||
--error-overlinking \ | ||
|
@@ -99,7 +98,7 @@ jobs: | |
- name: Test conda packages | ||
if: matrix.arch == 'linux-64' # can only test native platform packages | ||
run: | | ||
conda mambabuild --test packages/${{ matrix.arch }}/*.tar.bz2 | ||
conda build --test packages/${{ matrix.arch }}/*.tar.bz2 | ||
- name: Upload conda packages as artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|