Skip to content

Commit

Permalink
Mac 12 runners are deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Nov 18, 2024
1 parent 1a4bd5d commit 86aa6c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 110 deletions.
54 changes: 0 additions & 54 deletions .github/workflows/build-cpu-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,60 +213,6 @@ jobs:
name: pyqrack-${{ matrix.platform }}
path: dist/

build_mac_12:
runs-on: macos-12 # Use a Mac OS runner
strategy:
matrix:
platform:
- macosx_12_0_x86_64
steps:
- name: Checkout PyQrack
uses: actions/checkout@v4

- name: Checkout Qrack
uses: actions/checkout@v4
with:
repository: 'unitaryfund/qrack'
path: qrack

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel setuptools
- name: Install Homebrew (MacOS)
uses: Homebrew/actions/setup-homebrew@master

- name: Prepare Build Environment (MacOS)
run: |
brew upgrade rustup
brew install cmake
- name: Build Qrack MacOS
run: |
cd qrack
mkdir build
cd build
cmake -DQBCAPPOW=7 -DCPP_STD=14 -DENABLE_RDRAND=OFF -DENABLE_OPENCL=OFF ..
make qrack_pinvoke
- name: Build Wheel
run: |
mkdir pyqrack/qrack_system/qrack_lib
cp qrack/build/libqrack_pinvoke.* pyqrack/qrack_system/qrack_lib/
python setup.py bdist_wheel --plat-name=${{ matrix.platform }}
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: pyqrack-${{ matrix.platform }}
path: dist/

build_windows:
runs-on: windows-latest # Use a Linux runner
strategy:
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,62 +329,6 @@ jobs:
name: pyqrack-${{ matrix.platform }}
path: dist/

build_mac_12:
runs-on: macos-12 # Use a Mac OS runner
strategy:
matrix:
platform:
- macosx_12_0_x86_64
steps:
- name: Checkout PyQrack
uses: actions/checkout@v4

- name: Checkout Qrack
uses: actions/checkout@v4
with:
repository: 'unitaryfund/qrack'
path: qrack

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel setuptools
- name: Install Homebrew (MacOS)
uses: Homebrew/actions/setup-homebrew@master

- name: Prepare Build Environment (MacOS)
run: |
brew upgrade rustup
brew install cmake opencl-clhpp-headers
- name: Build Qrack MacOS
run: |
cd qrack
mkdir build
cd build
cmake -DQBCAPPOW=7 -DCPP_STD=14 -DENABLE_RDRAND=OFF -DCMAKE_CXX_FLAGS=-isystem\ /usr/local/opt/opencl-clhpp-headers/include ..
make qrack_pinvoke qrack_cl_precompile
- name: Build Wheel
run: |
mkdir pyqrack/qrack_system/qrack_lib
mkdir pyqrack/qrack_system/qrack_cl_precompile
cp qrack/build/libqrack_pinvoke.* pyqrack/qrack_system/qrack_lib/
cp qrack/build/qrack_cl_precompile pyqrack/qrack_system/qrack_cl_precompile/
python setup.py bdist_wheel --plat-name=${{ matrix.platform }}
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: pyqrack-${{ matrix.platform }}
path: dist/

build_windows:
runs-on: windows-latest # Use a Linux runner
strategy:
Expand Down

0 comments on commit 86aa6c4

Please sign in to comment.