forked from pyocd/cmsis-pack-manager
-
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.
Attempt to build 32bit binaries for windows (pyocd#176)
- Loading branch information
Showing
3 changed files
with
23 additions
and
6 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
matrix: | ||
os: [windows-latest] | ||
env: | ||
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-* pp* *-win32" | ||
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-* pp*" | ||
CIBW_BEFORE_BUILD: "python -m pip install --upgrade pip wheel setuptools setuptools_scm" | ||
CIBW_BUILD_VERBOSITY: 1 | ||
RUSTFLAGS: "-Ctarget-feature=+crt-static" | ||
|
@@ -23,11 +23,12 @@ jobs: | |
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
target: [x86_64-pc-windows-msvc, i686-pc-windows-msvc] | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: '3.7' | ||
python-version: "3.7" | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
|
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 |
---|---|---|
|
@@ -45,10 +45,15 @@ jobs: | |
with: | ||
platforms: arm64 | ||
|
||
# Assuming 64bit version is installed as default | ||
- name: Install Rust i686-pc-windows-msvc | ||
if: runner.os == 'Windows' | ||
run: rustup target add i686-pc-windows-msvc | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: '3.7' | ||
python-version: "3.7" | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
|
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