Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision d745e74710ab581d489e815095d0dd4ee91e9c35 authored by Bryna Hazelton on 15 September 2025, 18:00:43 UTC, committed by Jonathan Pober on 15 September 2025, 18:31:58 UTC
remove macos-13 from our CI matrix because it is deprecated
1 parent ea19da5
  • Files
  • Changes
  • 0617af3
  • /
  • ci
  • /
  • azure-piplines.yml
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:d745e74710ab581d489e815095d0dd4ee91e9c35
directory badge
swh:1:dir:afaff94737ff91382b52de3b4e30b6f614b899ed
content badge
swh:1:cnt:b60a990e91656d610f67abe42265d86947efee17

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
azure-piplines.yml
jobs:
- job: ext_pip
  pool:
    vmImage: "ubuntu-latest"
  variables:
    WITH_SUDO: true
  strategy:
    matrix:
      hera_cal:
          NAME: "hera_cal"
          PYTHON: "3.13"
          REPO: https://github.com/HERA-Team/hera_cal.git
          PIP_INSTALL_ARGS: ".[dev]"
          PYTEST_ARGS: "-n auto"
      hera_qm:
          NAME: "hera_qm"
          PYTHON: "3.12"
          REPO: https://github.com/HERA-Team/hera_qm.git
          PIP_INSTALL_ARGS: ".[tests]"
          PYTEST_ARGS: "-n auto"
      pyradiosky:
          NAME: "pyradiosky"
          PYTHON: "3.13"
          REPO: https://github.com/RadioAstronomySoftwareGroup/pyradiosky.git
          PIP_INSTALL_ARGS: ".[dev]"
          PYTEST_ARGS: ""
      SSINS:
          NAME: "SSINS"
          PYTHON: "3.13"
          REPO: https://github.com/mwilensky768/SSINS.git
          PIP_INSTALL_ARGS: ".[plot]"
          PYTEST_ARGS: "-n auto"

  steps:
  - task: UsePythonVersion@0
    inputs:
      versionSpec: $(PYTHON)

  - bash: |
      cd ../
      git clone ${REPO}
      cd s
    displayName: clone $(NAME)

  - bash: |
      pip install .[test]
    displayName: install pyuvdata

  - bash: |
      cd ../${NAME}
      pip install ${PIP_INSTALL_ARGS}
    displayName: install $(NAME)

  # re-install pyuvdata last to ensure the checked out code is installed
  # (because sometimes hera_cal pins to weird things and overwrites the earlier install.)
  # keep the earlier install because it ensures the right dependencies are grabbed.
  - bash: |
      cd s
      pip install .[test]
    displayName: install pyuvdata

  - bash: |
      pip list
    displayName: Environment Info

  - bash: |
      cd ../${NAME}
      pytest ${PYTEST_ARGS}
    displayName: run $(NAME) tests


- job: ext_conda
  pool:
    vmImage: "ubuntu-latest"
  strategy:
    matrix:
      pyuvsim:
        NAME: "pyuvsim"
        PYTHON: "3.12"
        ENV_NAME: pyuvsim_tests_openmpi
        WITH_SUDO: true
        REPO: https://github.com/RadioAstronomySoftwareGroup/pyuvsim.git
        PYTEST_ARGS: "-n auto"

  steps:
  - bash: |
      cd ../
      git clone ${REPO}
      cd s
    displayName: clone $(NAME)

  - bash: wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | sudo tar -C / -xvj bin/micromamba
    displayName: Install Micromamba

  - bash: |
      micromamba info
      # need to add gxx and gcc to build novas and cython
      # numba should be removed after next pyuvdata release (>3.2.1)
      # note different spelling of yaml extension
      micromamba create --name=${ENV_NAME}  python=$PYTHON gxx gcc numba -f ../$(NAME)/ci/${ENV_NAME}.yaml -yq
    displayName: configure conda environment

  - bash: |
      source ./ci/_activate_current_env.sh
      micromamba list -n ${ENV_NAME}
      # check that the python version matches the desired one; exit immediately if not
      PYVER=`python -c "import sys; print('{:d}.{:d}'.format(sys.version_info.major, sys.version_info.minor))"`
      if [[ $PYVER != $PYTHON ]]; then
        exit 1;
      fi
    displayName: Verify Mamba Config

  # install this version of pyuvdata
  - bash: |
      source ./ci/_activate_current_env.sh
      pip install --no-deps .
    displayName: install pyuvdata

  - bash: |
      source ./ci/_activate_current_env.sh
      cd ../$(NAME)
      pip install --no-deps .
    displayName: install $(NAME)

  - bash: |
      source ./ci/_activate_current_env.sh
      cd ../$(NAME)
      pytest ${PYTEST_ARGS}
    displayName: run $(NAME) tests
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API