forked from RosettaCommons/binder
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
4 additions
and
5 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 |
---|---|---|
|
@@ -23,16 +23,15 @@ jobs: | |
# macos-13 is an intel runner, macos-14 is apple silicon | ||
os: | ||
- ubuntu-latest | ||
- macos-13 | ||
- macos-14 | ||
# - macos-13 | ||
# - macos-14 | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install LLVM and Clang | ||
id: install-llvm | ||
uses: KyleMayes/install-llvm-action@v2 | ||
with: | ||
version: "11.0" | ||
|
@@ -43,14 +42,14 @@ jobs: | |
run: | | ||
sudo apt update | ||
sudo apt -y install cmake make gcc g++ python3 python3-dev pybind11-dev | ||
- name: Install macOS dependencies | ||
if: matrix.os == 'macos-13' || matrix.os == 'macos-14' | ||
run: | | ||
set -x | ||
brew install wget coreutils xz pybind11 git | ||
- name: Build wheels | ||
- name: Build Ubuntu wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_ENVIRONMENT: LLVM_DIR=${{ runner.temp }}/llvm Clang_DIR=${{ runner.temp }}/llvm | ||
|