Skip to content

Commit

Permalink
Try default macos environment
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjbillington committed Nov 27, 2024
1 parent 2a1bcdd commit 2820174
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ jobs:
architecture: ${{ matrix.arch }}
miniconda-version: "latest"

- name: Workaround conda-build incompatibility with xcode 12+
if: runner.os == 'macOS'
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
# - name: Workaround conda-build incompatibility with xcode 12+
# if: runner.os == 'macOS'
# uses: maxim-lobanov/setup-xcode@v1
# with:
# xcode-version: latest-stable

- name: Conda package (Unix)
if: (matrix.conda && runner.os != 'Windows')
Expand All @@ -147,34 +147,34 @@ jobs:
path: ./conda_packages


manylinux:
name: Build Manylinux
runs-on: ubuntu-latest
if: github.repository == 'chrisjbillington/desktop-app'
steps:
- name: Checkout
if: env.PURE == 'false'
uses: actions/checkout@v4
with:
fetch-depth: 0
# manylinux:
# name: Build Manylinux
# runs-on: ubuntu-latest
# if: github.repository == 'chrisjbillington/desktop-app'
# steps:
# - name: Checkout
# if: env.PURE == 'false'
# uses: actions/checkout@v4
# with:
# fetch-depth: 0

- name: Ignore Tags
if: contains(github.ref, '/tags') && env.PURE == 'false'
run: git tag -d $(git tag --points-at HEAD)
# - name: Ignore Tags
# if: contains(github.ref, '/tags') && env.PURE == 'false'
# run: git tag -d $(git tag --points-at HEAD)

- name: Build Manylinux Wheels
if: env.PURE == 'false'
uses: RalfG/[email protected]
with:
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
pre-build-command: 'git config --global --add safe.directory "*"'
# - name: Build Manylinux Wheels
# if: env.PURE == 'false'
# uses: RalfG/[email protected]
# with:
# python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
# pre-build-command: 'git config --global --add safe.directory "*"'

- name: Upload Artifact
if: env.PURE == 'false'
uses: actions/upload-artifact@v4
with:
name: dist-manylinux
path: dist/*manylinux*.whl
# - name: Upload Artifact
# if: env.PURE == 'false'
# uses: actions/upload-artifact@v4
# with:
# name: dist-manylinux
# path: dist/*manylinux*.whl

# release:
# name: Release
Expand Down

0 comments on commit 2820174

Please sign in to comment.