-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (31 loc) · 981 Bytes
/
build-linux-gate.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
name: build-linux-gate
on:
push:
paths:
- '**'
pull_request:
paths:
- '**'
workflow_dispatch:
jobs:
test-graalvm-junit5-feature:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get GraalVM Nightly
run: |
source .github/scripts/downloadGraalVM.sh
echo "$GRAALVM_HOME/bin" >> $GITHUB_PATH
echo "JAVA_HOME=$JAVA_HOME" >> $GITHUB_ENV
echo "GRAALVM_HOME=$GRAALVM_HOME" >> $GITHUB_ENV
- name: Fetch dependencies
run: |
sudo apt update;
sudo apt -y install libgtk-3-dev libgdk3.0-cil-dev libpangocairo-1.0-0 libpango1.0-dev libgl1-mesa-dev libatk1.0-dev libcairo-gobject2 libavcodec-dev libavformat-dev libavutil-dev libasound2-dev libpangoft2-1.0-0 libgdk-pixbuf2.0-dev;
- name: Build (linux)
run: |
mvn clean client:build client:package