-
Notifications
You must be signed in to change notification settings - Fork 11
95 lines (93 loc) · 2.73 KB
/
gradle.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Java CI with Gradle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- { compiler: gcc }
- { compiler: clang }
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
uses: eskatos/gradle-command-action@v1
with:
arguments: build
env:
CC: ${{matrix.compiler}}
ubuntu-gcc-arm64:
# Well, we've come to the end of the line. I've tried to get this working on native hardware and I've given up, past
# running a worker on AWS Graviton or buying a Raspberry Pi. Travis CI has a lot of issues. If anyone would LIKE to
# sponsor real ARM support for this, I'm all ears. For now, we will use user-mode emulation which works, albeit being
# quite slow.
runs-on: ubuntu-latest
steps:
- run: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset
- uses: docker://multiarch/ubuntu-core:arm64-bionic
with:
args: 'uname -a'
- uses: docker://multiarch/ubuntu-core:arm64-bionic
with:
args: >
bash -c
"apt-get update &&
apt-get install -y build-essential openjdk-8-jdk-headless git &&
mkdir /app && cd /app &&
git clone --recursive https://github.com/astei/libdeflate-java.git &&
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-arm64/ &&
cd libdeflate-java && ./gradlew build"
windows-msvc:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
uses: eskatos/gradle-command-action@v1
with:
arguments: build
env:
MSVC: true
windows-mingw:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
base-devel
git
mingw-w64-x86_64-binutils
mingw-w64-x86_64-gcc
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
uses: eskatos/gradle-command-action@v1
with:
arguments: build