This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
188 lines (180 loc) · 6.54 KB
/
main.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: GraalVM Gate
on:
push:
branches-ignore:
- 'github/**'
paths-ignore:
- '.devcontainer/**'
- '.github/workflows/quarkus.yml'
- '**.md'
pull_request:
paths-ignore:
- '.devcontainer/**'
- '.github/workflows/quarkus.yml'
- '**.md'
# Enable manual dispatch of the workflow
# see https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch:
# The following aims to reduce CI CPU cycles by:
# 1. Cancelling any previous builds of this PR when pushing new changes to it
# 2. Cancelling any previous builds of a branch when pushing new changes to it in a fork
# 3. Cancelling any pending builds, but not active ones, when pushing to a branch in the main
# repository. This prevents us from constantly cancelling CI runs, while being able to skip
# intermediate builds. E.g., if we perform two pushes the first one will start a CI job and
# the second one will add another one to the queue; if we perform a third push while the
# first CI job is still running the previously queued CI job (for the second push) will be
# cancelled and a new CI job will be queued for the latest (third) push.
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'oracle/graal' }}
env:
LANG: en_US.UTF-8
MX_GIT_CACHE: refcache
MX_PYTHON: python3.8
JAVA_HOME: ${{ github.workspace }}/jdk
JDT: builtin
MX_PATH: ${{ github.workspace }}/mx
jobs:
build-graalvm:
name: ${{ matrix.env.JDK }} ${{ matrix.env.GATE }} ${{ matrix.env.PRIMARY }} ${{ matrix.env.WITHOUT_VCS }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- env:
JDK: "labsjdk-ce-17"
GATE: "style,fullbuild"
PRIMARY: "substratevm"
- env:
JDK: "labsjdk-ce-17"
GATE: "build,test"
PRIMARY: "compiler"
- env:
JDK: "labsjdk-ce-17"
GATE: "build,test,helloworld"
PRIMARY: "substratevm"
- env:
JDK: "labsjdk-ce-17"
GATE: "build,test,helloworld_debug"
PRIMARY: "substratevm"
- env:
JDK: "labsjdk-ce-17"
GATE: "build,bootstraplite"
PRIMARY: "compiler"
- env:
JDK: "labsjdk-ce-17"
GATE: "style,fullbuild,sulongBasic"
PRIMARY: "sulong"
- env:
JDK: "labsjdk-ce-17"
GATE: "build,sulong"
PRIMARY: "vm"
DYNAMIC_IMPORTS: "/sulong,/substratevm"
DISABLE_POLYGLOT: true
DISABLE_LIBPOLYGLOT: true
- env:
JDK: "labsjdk-ce-17"
GATE: "build,debuginfotest"
PRIMARY: "substratevm"
- env:
JDK: "labsjdk-ce-11"
GATE: "build,debuginfotest"
PRIMARY: "substratevm"
- env:
JDK: "labsjdk-ce-11"
GATE: "hellomodule"
PRIMARY: "substratevm"
- env:
JDK: "labsjdk-ce-11"
GATE: "style,fullbuild"
PRIMARY: "compiler"
- env:
JDK: "labsjdk-ce-11"
GATE: "build,test"
PRIMARY: "compiler"
- env:
JDK: "labsjdk-ce-11"
GATE: "build,bootstraplite"
PRIMARY: "compiler"
- env:
JDK: "labsjdk-ce-11"
GATE: "build"
PRIMARY: "vm"
DYNAMIC_IMPORTS: "/tools,/substratevm,/sulong"
NATIVE_IMAGES: "polyglot"
WITHOUT_VCS: true
- env:
JDK: "labsjdk-ce-17"
GATE: "style,fullbuild"
PRIMARY: "espresso"
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/checkout@v2
with:
repository: graalvm/mx.git
fetch-depth: 1
ref: master
path: ${{ env.MX_PATH }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: actions/cache@v1
with:
path: ~/.mx
key: ${{ runner.os }}-mx-${{ hashFiles('**/suite.py') }}
restore-keys: ${{ runner.os }}-mx-
- name: Get JDK
env: ${{ matrix.env }}
run: |
mkdir jdk-dl
${MX_PATH}/mx --java-home= fetch-jdk --jdk-id ${JDK} --to jdk-dl --alias ${JAVA_HOME}
- name: Update dependency cache
if: ${{ contains(matrix.env.GATE, 'debug') || contains(matrix.env.GATE, 'style') }}
run: sudo apt update
- name: Debug dependencies
if: ${{ contains(matrix.env.GATE, 'debug') }}
run: sudo apt install gdb
- name: Style dependencies
if: ${{ contains(matrix.env.GATE, 'style') }}
run: |
sudo apt install python3-pip python-setuptools
cat common.json |
jq -r '.deps.common.packages | to_entries[] | select(.key | startswith("pip:")) | (.key | split(":")[1]) + .value' |
xargs sudo pip install
${MX_PYTHON} -m pip install jsonschema==4.6.1
- name: Build GraalVM and run gate
env: ${{ matrix.env }}
run: |
if [[ ${GATE} == *style* ]]
then
export ECLIPSE_TAR=eclipse.tar.gz
ECLIPSE_ORG_VERSION=$(cat common.json | jq -r '.downloads.eclipse.eclipse_org.version')
ECLIPSE_ORG_TIMESTAMP=$(cat common.json | jq -r '.downloads.eclipse.eclipse_org.timestamp')
wget --no-verbose https://archive.eclipse.org/eclipse/downloads/drops4/R-${ECLIPSE_ORG_VERSION}-${ECLIPSE_ORG_TIMESTAMP}/eclipse-SDK-${ECLIPSE_ORG_VERSION}-linux-gtk-x86_64.tar.gz -O $ECLIPSE_TAR
tar -xzf ${ECLIPSE_TAR}
export ECLIPSE_EXE=${PWD}/eclipse/eclipse
# the style gate needs the full commit history for checking copyright years
git fetch --unshallow
fi
echo ${JAVA_HOME}
${JAVA_HOME}/bin/java -version
if [[ ${WITHOUT_VCS} ]]
then
rm -rf .git
fi
exit_code=0
${MX_PATH}/mx --primary-suite-path ${PRIMARY} --J @"-Xmx2g" --java-home=${JAVA_HOME} gate --strict-mode --tags ${GATE} || exit_code=$?
if [[ -n "${GHA_EXPECTED_FAILURE}" ]]
then
if [[ ${exit_code} -eq 0 ]]
then
echo "Gate passed but was marked as expected failure."
exit 25
fi
else
exit ${exit_code}
fi