Support installing and testing using only a JRE #584
Workflow file for this run
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
on: [push, pull_request] | |
name: Continuous Integration | |
jobs: | |
Tests: | |
name: base | |
continue-on-error: true | |
strategy: | |
matrix: | |
python: | |
- '3.7' | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- 'pypy-3.7' | |
- 'pypy-3.8' | |
- 'pypy-3.9' | |
java: | |
- '8' | |
- '11' | |
- '20' | |
os: | |
- 'ubuntu-latest' | |
- 'windows-latest' | |
- 'macos-latest' | |
- 'apple-silicon-m1' | |
cython: | |
- '<3' | |
- '>=3' | |
architecture: | |
- 'x64' | |
- 'x86' | |
- 'aarch64' | |
exclude: | |
- os: windows-latest | |
architecture: aarch64 | |
- os: ubuntu-latest | |
architecture: aarch64 | |
- os: ubuntu-latest | |
architecture: x86 | |
- os: macos-latest | |
architecture: aarch64 | |
- os: macos-latest | |
architecture: x86 | |
- os: apple-silicon-m1 | |
architecture: x86 | |
- os: apple-silicon-m1 | |
architecture: x64 | |
- os: apple-silicon-m1 | |
python: '3.7' | |
- os: apple-silicon-m1 | |
python: '3.8' | |
- os: apple-silicon-m1 | |
python: '3.9' | |
- os: apple-silicon-m1 | |
python: 'pypy-3.7' | |
- os: apple-silicon-m1 | |
python: 'pypy-3.8' | |
- os: apple-silicon-m1 | |
python: 'pypy-3.9' | |
- os: windows-latest | |
architecture: x86 | |
python: 'pypy-3.7' | |
- os: windows-latest | |
architecture: x86 | |
python: 'pypy-3.8' | |
- os: windows-latest | |
architecture: x86 | |
python: 'pypy-3.9' | |
- os: apple-silicon-m1 | |
java: '8' | |
- os: windows-latest | |
architecture: x86 | |
java: '20' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: ${{ (matrix.os == 'apple-silicon-m1' && matrix.architecture == 'aarch64') && 'arm64' || matrix.architecture }} | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
architecture: ${{ matrix.architecture }} | |
- name: (macOS) Setup test dependencies | |
if: matrix.os == 'macos-latest' || matrix.os == 'apple-silicon-m1' | |
run: brew install ant | |
- name: Build test classes via ant | |
run: ant all | |
- name: (Windows) Force Cython version | |
# Windows sed doesnt accept .bak filename extensions | |
if: matrix.os == 'windows-latest' | |
run: sed -i 's/"Cython"/"Cython${{matrix.cython}}"/' pyproject.toml | |
- name: (Linux, macOS) Force Cython version | |
# macOS sed requires .bak filename extensions | |
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'macos-latest') || (matrix.os == 'apple-silicon-m1') | |
run: sed -i.bak 's/"Cython"/"Cython${{matrix.cython}}"/' pyproject.toml | |
- name: Install pyjnius with [dev, ci] extras | |
run: | | |
pip install --timeout=120 .[dev,ci] | |
- name: (Windows) Test pyjnius via pytest | |
if: matrix.os == 'windows-latest' | |
run: | | |
$env:PATH +=";$env:JAVA_HOME\jre\bin\server\;$env:JAVA_HOME\jre\bin\client\;$env:JAVA_HOME\bin\server\" | |
$env:CLASSPATH ="../build/test-classes;../build/classes" | |
cd tests | |
pytest -v | |
- name: (Linux, macOS) Test pyjnius via pytest | |
if: (matrix.os == 'ubuntu-latest') || (matrix.os == 'macos-latest') || (matrix.os == 'apple-silicon-m1') | |
run: | | |
cd tests | |
CLASSPATH=../build/test-classes:../build/classes python -m pytest -v | |
# - name: coveralls | |
# run: python -m coveralls | |
# env: | |
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} |