Skip to content

add namespace support #182

add namespace support

add namespace support #182

Workflow file for this run

name: Pull Request and Dev Publish
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
# runs-on: self-hosted
# runs-on: self-hosted-amd64-small-privileged
# runs-on: self-hosted-amd64-large-privileged-on-demand-storage
defaults:
run:
shell: bash -el {0}
steps:
- name: Retrieve the source code
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
with:
fetch-depth: 0
- name: Install dependencies
# https://github.com/conda-incubator/setup-miniconda
uses: conda-incubator/setup-miniconda@11b562958363ec5770fef326fe8ef0366f8cbf8a # v3
with:
channels: defaults
auto-activate-base: true
activate-environment: github.action
environment-file: environment.github.yml
- name: Conda Info
run: |
conda info
- name: Anaconda Project Setup
run: |
anaconda-project prepare --env-spec default
- name: Linting
run: |
anaconda-project run lint
- name: Run Unit Tests
run: |
anaconda-project run test:unit
- name: Build Conda Package
run: |
mkdir build
conda build conda-recipe --output-folder build
- name: Run Integration Tests
run: |
anaconda-project run test:integration:slipstream
# - name: Run System Tests
# env:
# AE5_HOSTNAME: dev1.ae.anacondaconnect.com
# CI: true
# run: |
# anaconda-project run test:system
- name: Upload to anaconda.org (Dev Build)
env:
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
run: |
anaconda --verbose --token $ANACONDA_TOKEN upload --user ae5-admin --label dev build/noarch/ae5-tools-*.tar.bz2 --force