-
-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split out test-windows-cross to speed up ci (#2188)
- Loading branch information
Showing
1 changed file
with
44 additions
and
15 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 |
---|---|---|
|
@@ -209,21 +209,6 @@ jobs: | |
fi | ||
# Check wheels with twine | ||
twine check --strict test-crates/pyo3-mixed/target/wheels/*.whl | ||
- name: test cross compiling windows wheel | ||
if: ${{ matrix.platform.os == 'ubuntu-latest' && !contains(matrix.platform.python-version, 'pypy') && !contains(matrix.platform.python-version, '-dev') }} | ||
run: | | ||
set -ex | ||
sudo apt-get install -y mingw-w64 | ||
rustup component add llvm-tools-preview | ||
rustup target add x86_64-pc-windows-gnu | ||
rustup target add x86_64-pc-windows-msvc | ||
# abi3 | ||
cargo run -- build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-gnu | ||
cargo run -- build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-msvc | ||
# no-abi3 | ||
cargo run -- build -i "python${PYTHON_VERSION}" -m test-crates/pyo3-mixed/Cargo.toml --target x86_64-pc-windows-msvc | ||
- name: test compiling with PYO3_CONFIG_FILE | ||
shell: bash | ||
run: | | ||
|
@@ -240,6 +225,50 @@ jobs: | |
cargo run new --mixed -b pyo3 test-crates/pyo3-new-mixed | ||
cargo run build -m test-crates/pyo3-new-mixed/Cargo.toml --target-dir test-crates/targets/ | ||
test-windows-cross: | ||
name: Test windows cross | ||
needs: [generate-matrix] | ||
strategy: | ||
fail-fast: ${{ needs.generate-matrix.outputs.fail-fast != 'false' }} | ||
runs-on: ubuntu-latest | ||
env: | ||
RUST_BACKTRACE: "1" | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Sccache Setup | ||
uses: mozilla-actions/[email protected] | ||
with: | ||
version: "v0.7.6" | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
architecture: "x64" | ||
- name: Set PYTHON_VERSION env var | ||
shell: bash | ||
run: | | ||
set -ex | ||
# remove -dev suffix | ||
python_version=$(echo "3.12" | sed -e s/-dev//) | ||
echo "PYTHON_VERSION=$python_version" >> "${GITHUB_ENV}" | ||
- uses: dtolnay/rust-toolchain@stable | ||
id: rustup | ||
- name: test cross compiling windows wheel | ||
run: | | ||
set -ex | ||
sudo apt-get install -y mingw-w64 | ||
rustup component add llvm-tools-preview | ||
rustup target add x86_64-pc-windows-gnu | ||
rustup target add x86_64-pc-windows-msvc | ||
# abi3 | ||
cargo run -- build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-gnu | ||
cargo run -- build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-msvc | ||
# no-abi3 | ||
cargo run -- build -i "python${PYTHON_VERSION}" -m test-crates/pyo3-mixed/Cargo.toml --target x86_64-pc-windows-msvc | ||
test-emscripten: | ||
name: Test Emscripten | ||
if: github.event_name != 'pull_request' | ||
|