-
Notifications
You must be signed in to change notification settings - Fork 37
73 lines (71 loc) · 2.61 KB
/
build.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
name: Build OpenJDK Binding
on:
workflow_call:
inputs:
debug-level:
required: true
type: string
build-env-var:
required: false
type: string
mmtk-core-repo:
required: false
type: string
mmtk-core-ref:
required: false
type: string
jobs:
build-linux-x64:
name: linux-x64
runs-on: ubuntu-22.04
steps:
- name: Checkout MMTk OpenJDK binding
uses: actions/checkout@v4
with:
path: ./git/mmtk-openjdk
- name: Extract OpenJDK revision
id: extract-openjdk-revision
run: |
OPENJDK_VERSION=`sed -n 's/^openjdk_version.=."\(.*\)"$/\1/p' < git/mmtk-openjdk/mmtk/Cargo.toml`
echo "openjdk-revision=$OPENJDK_VERSION" >> $GITHUB_OUTPUT
- name: Checkout OpenJDK
uses: actions/checkout@v4
with:
repository: mmtk/openjdk
path: ./git/openjdk
ref: ${{ steps.extract-openjdk-revision.outputs.openjdk-revision }}
# Patch mmtk-core version if needed
- name: Patch mmtk-core version
if: ${{ inputs.mmtk-core-repo != '' || inputs.mmtk-core-ref != '' }}
run: |
pip3 install tomlkit
python3 .github/scripts/patch-mmtk-dep.py mmtk/Cargo.toml ${{ inputs.mmtk-core-ref }} ${{ inputs.mmtk-core-repo }}
cat mmtk/Cargo.toml
working-directory: ./git/mmtk-openjdk
- name: Setup environment
run: ./.github/scripts/ci-setup.sh
working-directory: ./git/mmtk-openjdk
- name: Export build environemnt variables
if: ${{ inputs.build-env-var != '' }}
run: |
echo "${{ inputs.build-env-var }}" >> $GITHUB_ENV
- name: Export build suffix
run: |
if [ -z "${{ inputs.build-env-var }}" ]; then
echo "BUILD_SUFFIX=normal" >> $GITHUB_ENV
else
escaped_build=$(echo "${{ inputs.build-env-var }}" | sed 's/ /_/g')
echo "BUILD_SUFFIX=$escaped_build" >> $GITHUB_ENV
fi
- name: Build MMTk OpenJDK ${{ inputs.debug-level }}
run: |
OPENJDK_PATH=$GITHUB_WORKSPACE/git/openjdk DEBUG_LEVEL=${{ inputs.debug-level }} OPENJDK_BUILD_TARGET=product-bundles ./.github/scripts/ci-build.sh
working-directory: ./git/mmtk-openjdk
- name: Upload bundles
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-server-${{ inputs.debug-level }}-bundles-${{ env.BUILD_SUFFIX }}
path: |
./git/openjdk/build/linux-x86_64-normal-server-${{ inputs.debug-level }}/bundles/*_bin.tar.gz
./git/openjdk/build/linux-x86_64-normal-server-${{ inputs.debug-level }}/bundles/*_bin-debug.tar.gz
retention-days: 2