Skip to content

Docstrings for 1.34.0 (#8588) #12505

Docstrings for 1.34.0 (#8588)

Docstrings for 1.34.0 (#8588) #12505

Workflow file for this run

name: Snowpark Conda Build Test
on:
push:
branches:
- "develop"
pull_request:
types: [opened, synchronize, reopened]
# Avoid duplicate workflows on same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_snowpark_conda_package:
runs-on: ubuntu-latest
defaults:
run:
shell: bash --login -eo pipefail {0}
steps:
- name: Checkout Streamlit code
uses: actions/checkout@v4
with:
persist-credentials: false
submodules: "recursive"
fetch-depth: 2
- name: Set build config env vars
uses: ./.github/actions/build_info
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Setup virtual env
uses: ./.github/actions/make_init
- name: Install conda and conda-build
env:
MINICONDA_RELEASE: "Miniconda3-py312_24.1.2-0-Linux-x86_64"
run: |
curl -sO "https://repo.anaconda.com/miniconda/${MINICONDA_RELEASE}.sh"
bash "${MINICONDA_RELEASE}.sh" -b
conda install conda-build
- name: Build Snowpark Conda Package - Fast
timeout-minutes: 120
run: |
sudo apt install rsync
conda config --set conda_build.pkg_format 2
SNOWPARK_CONDA_BUILD=1 BUILD_AS_FAST_AS_POSSIBLE=1 make conda-package