-
Notifications
You must be signed in to change notification settings - Fork 3.3k
127 lines (114 loc) · 4.54 KB
/
Copy pathreusable-build-flavours.yaml
File metadata and controls
127 lines (114 loc) · 4.54 KB
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
# %CopyrightBegin%
#
# SPDX-License-Identifier: Apache-2.0
#
# Copyright Ericsson AB 2024-2026. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# %CopyrightEnd%
name: Build Erlang/OTP (Types and Flavors)
run-name: "[${{ inputs.base_branch }}] Build Erlang/OTP (Types and Flavors)"
on:
workflow_call:
inputs:
base_branch:
required: true
type: string
types:
required: true
type: string
description: |
A string with types, e.g., "opt debug lcnt asan gcov valgrind"
permissions:
contents: read
# NOTE: This job should only be executed on the callee with `needs: pack`
jobs:
build-flavors:
name: Build Erlang/OTP (Types and Flavors)
runs-on: ubuntu-latest
permissions:
contents: read # actions/checkout + ./.github/actions/build-base-image
strategy:
matrix:
flavor: [jit, emu]
fail-fast: false
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/build-base-image
with:
BASE_BRANCH: ${{ inputs.base_branch }}
BUILD_IMAGE: true
- name: Build Erlang/OTP flavors and types
env:
TYPES: ${{ inputs.types }}
run: |
TYPES="${TYPES}"
FLAVORS="${{ matrix.flavor }}"
for TYPE in ${TYPES}; do
for FLAVOR in ${FLAVORS}; do
echo "::group::{TYPE=$TYPE FLAVOR=$FLAVOR}"
docker run otp \
"set -xe;
if [ '${TYPE}' = 'valgrind' ]; then sudo apt-get install -y valgrind bc; fi;
echo 'Setup start flags';
if [ '$TYPE' != 'opt' ]; then EMU_TYPE='-emu_type $TYPE'; fi;
if [ '$FLAVOR' = 'jit' ]; then
EMU_FLAVOR='smp'
else
EMU_FLAVOR='$FLAVOR'
fi;
echo 'Build type and flavor and test starting in source tree';
TYPE=$TYPE FLAVOR=$FLAVOR ./otp_build boot -a;
cerl -$TYPE -emu_flavor \$EMU_FLAVOR -noshell -s init stop;
echo 'Install and test installation';
sudo make install TYPE=$TYPE FLAVOR=$FLAVOR;
if [ $TYPE != 'valgrind' ] && [ $TYPE != 'asan' ]; then
erl \$EMU_TYPE -emu_flavor \$EMU_FLAVOR -noshell -s init stop;
fi
echo 'Release and test release'
./otp_build release -a \$(pwd)/test_release/;
(cd \$(pwd)/test_release/ && ./Install -minimal \$(pwd));
TYPE=$TYPE FLAVOR=$FLAVOR ./otp_build release -a \$(pwd)/test_release;
if [ $TYPE != 'valgrind' ] && [ $TYPE != 'asan' ]; then
test_release/bin/erl \$EMU_TYPE -emu_flavor \$EMU_FLAVOR -noshell -s init stop;
fi"
echo "::endgroup::"
done
done
- name: Build Erlang/OTP JIT Win32 ABI
if: ${{ matrix.flavor == 'jit' }}
run: >
docker run otp \
'set -xe;
./configure CFLAGS="$CFLAGS -DERTS_JIT_ABI_WIN32=1";
make && make TYPE=debug;
cerl -noshell -s init stop && cerl -debug -noshell -s init stop'
- name: Build Erlang/OTP with LTTNG
if: ${{ matrix.flavor == 'jit' }}
run: >
docker run otp \
'set -xe;
sudo apt-get install -y lttng-tools;
./configure --enable-dynamic-trace=lttng;
make && make TYPE=debug;
cerl -noshell -s init stop && cerl -debug -noshell -s init stop'
- name: Start Erlang with various start options
if: ${{ matrix.flavor == 'jit' }}
run: |
OPTIONS=("+JPperf true" "+JMsingle true" "+JDdump true")
for OPTION in "${OPTIONS[@]}"; do
docker run otp "erl ${OPTION} -noshell -s init stop"
done