Skip to content

Commit

Permalink
Remove MacOS 14 runner on azure as its unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Mar 1, 2024
1 parent 62fd8a7 commit ce0fabf
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,39 +259,6 @@ stages:
displayName: 'Publish wheel as build artifact'
- template: ci/upload-wheels.yml

- job: 'macos_wheels_arm64'
timeoutInMinutes: 45
pool:
vmImage: 'macOS-14'
steps:
- checkout: self
submodules: True
condition: succeeded()
- script: |
brew install flex bison cmake ninja
condition: succeeded()
displayName: 'Install Dependencies'
- task: UsePythonVersion@0
- script: |
if [[ "$(RELEASEWHEELBUILD)" != "True" ]]; then
export NMODL_NIGHTLY_TAG="-nightly"
else
export NMODL_NIGHTLY_TAG=""
fi
python3 -m pip install --upgrade pip
python3 -m pip install cibuildwheel==2.16.5 tomli tomli-w
# change the name accordingly
python3 packaging/change_name.py pyproject.toml "nmodl$TAG"
SETUPTOOLS_SCM_PRETEND_VERSION="$(git describe --tags | cut -d '-' -f 1,2 | tr - .)" python3 -m cibuildwheel --output-dir wheelhouse
condition: succeeded()
displayName: 'Build macos Wheel (arm64)'
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: '$(Build.SourcesDirectory)/wheelhouse'
condition: succeeded()
displayName: 'Publish wheel as build artifact'
- template: ci/upload-wheels.yml

- job: 'test_manylinux_wheels'
dependsOn: 'manylinux_wheels'
timeoutInMinutes: 45
Expand Down

0 comments on commit ce0fabf

Please sign in to comment.