这是indexloc提供的服务,不要输入任何密码
Skip to content

Remove mac builds

Remove mac builds #17

Workflow file for this run

# This pipeline is executed every time someone pushes a tag to GitHub. If the

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

(Line: 148, Col: 9): Job 'Publish-To-PyPI' depends on unknown job 'Package-macos-arm'., (Line: 149, Col: 9): Job 'Publish-To-PyPI' depends on unknown job 'Package-macos-intel'., (Line: 186, Col: 12): Job 'Push-Docs' depends on job 'Publish-To-PyPI' which creates a cycle in the dependency graph.
# tag is a valid version number, it builds the library, and
# runs the slow tests, the benchmarks, and then dependency matrix.
# It will eventually push the package distribution to PyPI,
# and if this is a production release, also publish the docs.
name: Release Pipeline
on:
push:
tags:
- '**'
env:
# Force nox to produce colorful logs:
FORCE_COLOR: "true"
jobs:
Check-Tag-Pattern:
if: github.repository == 'opendp/tumult-core'
runs-on: ubuntu-latest
steps:
- run: |
re="^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-(alpha|beta|rc)\.(0|[1-9][0-9]*))?$"
if [[ ! "$GITHUB_REF_NAME" =~ $re ]]; then
echo "Tag $GITHUB_REF_NAME is not a valid version number. Aborting release pipeline."
exit 1
fi
Package-linux:
if: github.repository == 'opendp/tumult-core'
runs-on: ubuntu-latest
needs: Check-Tag-Pattern
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up runner
uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
- run: uv run --only-group scripting nox -s build
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: linux-wheel
path: dist/*.whl
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
# Package-macos-intel:
# if: github.repository == 'opendp/tumult-core'
# runs-on: macos-15-intel
# needs: Check-Tag-Pattern
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Set up runner
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
# - run: uv run --only-group scripting nox -s build
# - name: Upload wheel
# uses: actions/upload-artifact@v4
# with:
# name: macos-intel-wheel
# path: dist/*.whl
# Package-macos-arm:
# if: github.repository == 'opendp/tumult-core'
# runs-on: macos-latest
# needs: Check-Tag-Pattern
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Set up runner
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
# - run: uv run --only-group scripting nox -s build
# - name: Upload wheel
# uses: actions/upload-artifact@v4
# with:
# name: macos-arm-wheel
# path: dist/*.whl
# Test-Slow:
# if: github.repository == 'opendp/tumult-core'
# runs-on: ubuntu-latest
# needs: Package-linux
# steps:
# - name: Checkout code repository
# uses: actions/checkout@v4
# - name: Set up runner
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
# - name: Download dist
# uses: actions/download-artifact@v4
# with:
# name: linux-wheel
# path: dist
# - run: uv run nox -s test-slow
# Benchmark:
# if: github.repository == 'opendp/tumult-core'
# runs-on: ubuntu-latest
# needs: Package-linux
# steps:
# - name: Checkout code repository
# uses: actions/checkout@v4
# - name: Set up runner
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
# - name: Download dist
# uses: actions/download-artifact@v4
# with:
# name: linux-wheel
# path: dist
# - run: uv run nox -t benchmark
# Dependency-Matrix:
# if: github.repository == 'opendp/tumult-core'
# strategy:
# fail-fast: false
# matrix:
# # Note: mac runners are rather expensive (10x multiplier) so we don't use them here.
# os: [ubuntu-latest]
# dependencies: [oldest, newest]
# python: ["3.10", "3.12"]
# runs-on: ${{ matrix.os }}
# needs: Package-linux
# steps:
# - name: Checkout code repository
# uses: actions/checkout@v4
# - name: Set up runner
# uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
# - name: Download dist
# uses: actions/download-artifact@v4
# with:
# name: linux-wheel
# path: dist
# - run: uv run nox -s "test_dependency_matrix(${{matrix.python}}-${{matrix.dependencies}})"
# env:
# SPARK_LOCAL_HOSTNAME: localhost
Publish-To-PyPI:
if: github.repository == 'opendp/tumult-core'
runs-on: ubuntu-latest
needs:
# - Test-Slow
# - Benchmark
# - Dependency-Matrix
- Package-linux
- Package-macos-arm
- Package-macos-intel
environment:
name: pypi
url: https://pypi.org/p/tmlt-core
permissions:
id-token: write
steps:
- name: Download linux wheel
uses: actions/download-artifact@v4
with:
name: linux-wheel
path: dist
# - name: Download mac arm wheel
# uses: actions/download-artifact@v4
# with:
# name: macos-arm-wheel
# path: dist
# - name: Download mac intel wheel
# uses: actions/download-artifact@v4
# with:
# name: macos-intel-wheel
# path: dist
- name: Download sdist
uses: actions/download-artifact@v4
with:
name: sdist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Push-Docs:
if: ${{ github.repository == 'opendp/tumult-core'
&& ! contains(github.ref_name, 'alpha')
&& ! contains(github.ref_name, 'beta') }}
#&& ! contains(github.ref_name, 'rc') }}
runs-on: ubuntu-latest
environment: docs-push
needs: Publish-To-PyPI
steps:
- name: Checkout code repository
uses: actions/checkout@v4
- name: Set up runner
uses: opendp/tumult-tools/actions/setup@eabe1054863f0916a0087ad180fd83719049c094
- name: Download dist
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- run: |
re="^([0-9]+)\.([0-9]+).*$"
[[ $GITHUB_REF_NAME =~ $re ]]
echo "MAJOR_VERSION=${BASH_REMATCH[1]}" >> $GITHUB_ENV
echo "MINOR_VERSION=${BASH_REMATCH[2]}" >> $GITHUB_ENV
- name: Push docs
uses: opendp/tumult-tools/actions/push_docs@1c7b4b3cfa98ab75f3c5b0b91858c897a81629ad
with:
docs-repository: opendp/tumult-docs
docs-repository-token: ${{ secrets.DOCS_REPO_PAT }}
docs-path: docs/core
version: ${{ format('v{0}.{1}', env.MAJOR_VERSION, env.MINOR_VERSION) }}
dry-run: true