-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a1bcdd
commit 2820174
Showing
1 changed file
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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') | ||
|
@@ -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 | ||
|