-
Notifications
You must be signed in to change notification settings - Fork 23
42 lines (42 loc) · 1.08 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
name: jvmquake-ci
on:
push:
branches:
- master
- main
tags:
- v'*'
pull_request:
jobs:
ubuntu:
runs-on: [ubuntu-20.04, ubuntu-22.04]
strategy:
matrix:
java: [ '8', '11']
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: 'zulu'
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