Update readme #33
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
--- | |
name: jvmquake-ci | |
on: | |
push: | |
branches: | |
- master | |
- main | |
tags: | |
- v'*' | |
pull_request: | |
jobs: | |
centos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Set nproc limits to control threads" | |
run: | | |
sudo prlimit --pid $$ --nofile=32768:32768 --nproc=32768:32768 | |
ulimit -n -u | |
- name: "Test Java 8 for centos7 in Docker" | |
run: make test_centos7_openjdk8 | |
ubuntu-jammy: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
dist: ['zulu', 'temurin', 'corretto'] | |
java: ['8', '11', '17', '21'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Set nproc limits to control threads" | |
run: | | |
sudo prlimit --pid $$ --nofile=32768:32768 --nproc=32768:32768 | |
ulimit -n -u | |
- name: "Setup python for tox" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: "Install tox for test suite" | |
run: pip install tox | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.dist }} | |
java-version: | | |
8 | |
${{ matrix.java }} | |
- name: "Build jvmquake .so with Java 8" | |
run: JAVA_HOME=$JAVA_HOME_8_X64 make -C src | |
- name: Build jvmquake tests against Java ${{ matrix.java }} | |
run: env | grep JAVA && make -C tests | |
- name: Run jvmquake tests against Java ${{ matrix.java }} | |
env: | |
JAVA_MAJOR_VERSION: ${{ matrix.java }} | |
run: tox -e test,test_jvm | |
ubuntu-bionic: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
dist: ['zulu', 'temurin', 'corretto'] | |
java: ['8', '11', '17', '21'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Set nproc limits to control threads" | |
run: | | |
sudo prlimit --pid $$ --nofile=32768:32768 --nproc=32768:32768 | |
ulimit -n -u | |
- name: "Setup python for tox" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: "Install tox for test suite" | |
run: pip install tox | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.dist }} | |
java-version: | | |
8 | |
${{ matrix.java }} | |
- name: "Build jvmquake .so with Java 8" | |
run: JAVA_HOME=$JAVA_HOME_8_X64 make -C src | |
- name: Build jvmquake tests against JVM ${{ matrix.java }} | |
run: env | grep JAVA && make -C tests | |
- name: Run jvmquake tests against JVM ${{ matrix.java }} | |
env: | |
JAVA_MAJOR_VERSION: ${{ matrix.java }} | |
run: tox -e test,test_jvm |