Skip to content

Test Build

Test Build #57

Workflow file for this run

name: Test Build
on: workflow_dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Conda ${{ matrix.arch }} on ${{ matrix.os }} with Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
env:
CI: "1"
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python: "3.10"
arch: Linux-x86_64
- os: ubuntu-latest
python: "3.11"
arch: Linux-x86_64
- os: macos-12
python: "3.11"
arch: MacOSX-x86_64
- os: macos-14
python: "3.11"
arch: MacOSX-x86_64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Conda Base
run: |
rm -rf /usr/share/miniconda
rm -rf /usr/local/miniconda
./tools/bootstrap_base.sh ~/conda ${{ matrix.arch }}
- name: Check Conda Config
run: |
source ~/conda/etc/profile.d/conda.sh &&
conda activate base &&
conda info &&
conda list &&
conda config --show-sources &&
conda config --show
- name: Install
run: |
source ~/conda/etc/profile.d/conda.sh &&
conda activate base &&
pyver=${{ matrix.python }} &&
sed -i -E "s/python=3\.[[:digit:]]+.*/python=${pyver}/" ./config/default/packages_conda.txt &&
cat ./config/default/packages_conda.txt &&
if [[ ${{ matrix.os }} == "macos-12" || ${{ matrix.os }} == "macos-14" ]]; then \
./soconda.sh -e soconda -v CI -c binary; \
else \
./soconda.sh -e soconda -v CI -c default; \
fi
- name: Run Tests
run: |
source ~/conda/etc/profile.d/conda.sh &&
conda activate "soconda_CI" &&
export OMP_NUM_THREADS=2 &&
export MPI_DISABLE=1 &&
export CI=1 &&
python3 -c 'import scipy; import toast' &&
python3 -c 'import so3g; from spt3g import core' &&
python3 -c 'from sotodlib import core' &&
python3 -c 'import toast.tests; toast.tests.run()' &&
git clone --depth=1 --single-branch --branch=master https://github.com/simonsobs/sotodlib.git &&
pushd sotodlib &&
python3 -m unittest &&
popd &&
unset MPI_DISABLE &&
unset OMP_NUM_THREADS