Skip to content

Commit

Permalink
temporally removed build for windows and macos pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Socrats committed Apr 23, 2021
1 parent 12d790b commit ce64e23
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 49 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,32 +66,32 @@ jobs:
arch: x64
release: true
name-extra: ' (Release)'
- runs-on: macos-latest
python: pypy-3.6
arch: x64

- runs-on: windows-latest
python: 3.6
arch: x64
- runs-on: windows-latest
python: 3.9
arch: x64
- runs-on: windows-latest
python: 3.6
arch: x86
name-extra: ' (32-bit)'
- runs-on: windows-latest
python: 3.9
arch: x86
name-extra: ' (32-bit)'
- runs-on: windows-latest
python: 3.6
arch: x64
release: true
name-extra: ' (Release)'
- runs-on: windows-latest
python: pypy-3.6
arch: x86
# - runs-on: macos-latest
# python: pypy-3.6
# arch: x64

# - runs-on: windows-latest
# python: 3.6
# arch: x64
# - runs-on: windows-latest
# python: 3.9
# arch: x64
# - runs-on: windows-latest
# python: 3.6
# arch: x86
# name-extra: ' (32-bit)'
# - runs-on: windows-latest
# python: 3.9
# arch: x86
# name-extra: ' (32-bit)'
# - runs-on: windows-latest
# python: 3.6
# arch: x64
# release: true
# name-extra: ' (Release)'
# - runs-on: windows-latest
# python: pypy-3.6
# arch: x86

name: Python ${{ matrix.python }}${{ matrix.name-extra }} • ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
Expand Down Expand Up @@ -127,14 +127,14 @@ jobs:
sudo apt-get install libomp-dev
sudo apt install libeigen3-dev
echo "Eigen3_DIR='/usr/include/eigen3'" >> $GITHUB_ENV
- name: Install Eigen3 windows
if: runner.os == 'Windows'
run: |
curl.exe --output eigen-3.3.9.tar.gz --url https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz
tar -zxvf eigen-3.3.9.tar.gz
ren eigen-3.3.9 eigen3
move eigen3 "C:/Program Files (x86)/eigen3"
echo "Eigen3_DIR='C:/Program Files (x86)/eigen3'" >> $GITHUB_ENV
# - name: Install Eigen3 windows
# if: runner.os == 'Windows'
# run: |
# curl.exe --output eigen-3.3.9.tar.gz --url https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz
# tar -zxvf eigen-3.3.9.tar.gz
# ren eigen-3.3.9 eigen3
# move eigen3 "C:/Program Files (x86)/eigen3"
# echo "Eigen3_DIR='C:/Program Files (x86)/eigen3'" >> $GITHUB_ENV

- name: Install OpenBLAS on macOS for NumPy
if: runner.os == 'macOS' && startsWith(matrix.python, 'pypy')
Expand Down
29 changes: 14 additions & 15 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ jobs:
cibw-arch: macosx_arm64
- runs-on: macos-latest
cibw-arch: macosx_universal2
- runs-on: windows-latest
cibw-arch: win_amd64
- runs-on: windows-latest
cibw-arch: win32
python-arch: x86
# - runs-on: windows-latest
# cibw-arch: win_amd64
# - runs-on: windows-latest
# cibw-arch: win32
# python-arch: x86

name: Wheels • ${{ matrix.cibw-arch }}
runs-on: ${{ matrix.runs-on }}
Expand Down Expand Up @@ -106,15 +106,14 @@ jobs:
sudo apt-get install libomp-dev
sudo apt install libeigen3-dev
echo "Eigen3_DIR='/usr/include/eigen3'" >> $GITHUB_ENV
- name: install Eigen3 windows
if: runner.os == 'Windows'
run: |
curl.exe --output eigen-3.3.9.tar.gz --url https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz
tar -zxvf eigen-3.3.9.tar.gz
ren eigen-3.3.9 eigen3
echo "Eigen is on %cd%"
echo "Directory contents: %dir%"
echo "Eigen3_DIR='%cd%\eigen3'" >> $GITHUB_ENV
# - name: install Eigen3 windows
# if: runner.os == 'Windows'
# run: |
# curl.exe --output eigen-3.3.9.tar.gz --url https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz
# tar -zxvf eigen-3.3.9.tar.gz
# ren eigen-3.3.9 eigen3
# move eigen3 "C:/Program Files (x86)/eigen3"
# echo "Eigen3_DIR='C:/Program Files (x86)/eigen3'" >> $GITHUB_ENV

- name: Install OpenBLAS on macOS for NumPy
if: runner.os == 'macOS' && startsWith(matrix.python, 'pypy')
Expand Down Expand Up @@ -144,7 +143,7 @@ jobs:
if: startsWith(github.ref, 'refs/heads/docs')
shell: bash
run: |
echo "CIBW_BUILD=cp37-manylinux_x86_64" >> $GITHUB_ENV
echo "CIBW_BUILD=cp38-manylinux_x86_64" >> $GITHUB_ENV
- name: Run cibuildwheel
if: startsWith(github.ref, 'refs/heads/docs') != true || matrix.cibw-arch == 'manylinux_x86_64'
run: |
Expand Down

0 comments on commit ce64e23

Please sign in to comment.