forked from openjdk/jdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
31 lines (23 loc) · 960 Bytes
/
.gitpod.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
tasks:
- init: |
# install operating system dependencies
sudo apt-get install libasound2-dev libcups2-dev libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev
# unset variable set by gitpod otherwise cannot bootstrap openjdk
unset JAVA_TOOL_OPTIONS
# install a version of the SDK which can be used to bootstrap openjdk
sdk install 18-amzn
# bootstrap configuration
bash configure
# compile
make
- command: |
# install operating system dependencies
sudo apt-get install libasound2-dev libcups2-dev libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev
# unset variable set by gitpod otherwise cannot bootstrap openjdk
unset JAVA_TOOL_OPTIONS
# install a version of the SDK which can be used to bootstrap openjdk
sdk install 18-amzn
# bootstrap configuration
bash configure
# compile
make