-
Notifications
You must be signed in to change notification settings - Fork 20
34 lines (26 loc) · 901 Bytes
/
x86.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
name: Java CI x86 Gradle
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ windows-2019, ubuntu-22.04 ]
distribution: [ 'zulu' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v3
- name: Set up JDK 8, x86
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: '8.0.153'
java-package: jdk
architecture: x86
cache: 'gradle'
- name: Run gradle and ant builds
run: |
java -version
chmod +x ./gradlew
./gradlew build --no-daemon
ant -noinput -buildfile build.xml -Drepository="/.gradle/caches/modules-2/files-2.1" -Dgson_path="/com.google.code.gson/gson/2.10.1/b3add478d4382b78ea20b1671390a858002feb6c" clean all build-jar